Skip to content

doc: Improve NixOS documentation #983

doc: Improve NixOS documentation

doc: Improve NixOS documentation #983

name: Call Build Preview
on:
pull_request:
types: [opened, reopened]
jobs:
approval_check:
runs-on: ubuntu-latest
timeout-minutes: 5
if: ${{ ! contains(github.head_ref, 'dependabot*') && ! contains(github.head_ref, 'gh-readonly-queue*') }}
steps:
- name: Echo approval
run: |
echo "Workflow has been allowed to run for PR ${{ github.event.number }}. Setting artifacts and then continuing workflow runs"
# Save the PR number and branch name to an artifact for use in subsequent jobs
- name: Save PR number and Branch name
run: |
mkdir -p ./pr
echo "${{ github.event.number }}" > ./pr/number
echo "${{ github.head_ref }}" >> ./pr/branch
# Upload the artifact
- name: Upload PR information artifact
uses: actions/upload-artifact@v3
with:
name: pr
path: pr/