We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2c67eb commit 8acf15fCopy full SHA for 8acf15f
.github/workflows/pr-auditor.yml
@@ -8,13 +8,14 @@ jobs:
8
check-pr:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v2
12
- with: { repository: 'sourcegraph/sourcegraph' }
13
- - uses: actions/setup-go@v2
14
- with: { go-version: '1.18' }
+ - uses: actions/checkout@v3
+ with:
+ repository: 'sourcegraph/pr-auditor'
+ - uses: actions/setup-go@v4
15
+ with: { go-version: '1.20' }
16
- - run: ./dev/pr-auditor/check-pr.sh
17
+ - run: './check-pr.sh'
18
env:
19
GITHUB_EVENT_PATH: ${{ env.GITHUB_EVENT_PATH }}
- GITHUB_TOKEN: ${{ secrets.CODENOTIFY_GITHUB_TOKEN }}
20
+ GITHUB_TOKEN: ${{ github.token }}
21
GITHUB_RUN_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
0 commit comments