.github/workflows/nixos-manual.yml: add permisssions so action runs don't require approval

master
Ryan Mulligan 2021-05-27 06:49:11 -07:00 committed by zowoq
parent 822266fdfd
commit 0d2757302c
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,9 @@
name: NixOS manual checks name: NixOS manual checks
permissions: read-all
on: on:
pull_request: pull_request_target:
branches-ignore: branches-ignore:
- 'release-**' - 'release-**'
paths: paths:
@ -14,6 +16,9 @@ jobs:
if: github.repository_owner == 'NixOS' if: github.repository_owner == 'NixOS'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with:
# pull_request_target checks out the base branch by default
ref: refs/pull/${{ github.event.pull_request.number }}/merge
- uses: cachix/install-nix-action@v12 - uses: cachix/install-nix-action@v12
- name: Check DocBook files generated from Markdown are consistent - name: Check DocBook files generated from Markdown are consistent
run: | run: |