We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2f0948 commit d53e95fCopy full SHA for d53e95f
1 file changed
.github/workflows/pr-auditor.yml
@@ -3,19 +3,20 @@ name: pr-auditor
3
on:
4
pull_request_target:
5
types: [ closed, edited, opened, synchronize, ready_for_review ]
6
+ workflow_dispatch:
7
8
jobs:
9
check-pr:
10
runs-on: ubuntu-latest
11
steps:
- - uses: actions/checkout@v3
12
+ - uses: actions/checkout@v4
13
with:
14
repository: 'sourcegraph/pr-auditor'
15
- uses: actions/setup-go@v4
- with: { go-version: '1.20' }
16
+ with: { go-version: '1.21' }
17
18
- run: './check-pr.sh'
19
env:
20
GITHUB_EVENT_PATH: ${{ env.GITHUB_EVENT_PATH }}
- GITHUB_TOKEN: ${{ github.token }}
21
+ GITHUB_TOKEN: ${{ secrets.PR_AUDITOR_TOKEN }}
22
GITHUB_RUN_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
0 commit comments