Skip to content

Commit 1a6a2db

Browse files
authored
build: Use Github token (#1539)
1 parent 11a19f6 commit 1a6a2db

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/review.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,41 +26,41 @@ jobs:
2626
*.md
2727
*.sh
2828
reporter: github-pr-review
29-
github_token: ${{ secrets.REPO_ACCESS_TOKEN }}
29+
github_token: ${{ secrets.GITHUB_TOKEN }}
3030
-
3131
name: Hadolint
3232
uses: reviewdog/action-hadolint@v1
3333
with:
3434
level: warning
3535
reporter: github-pr-review
3636
hadolint_ignore: DL3006 DL3008
37-
github_token: ${{ secrets.REPO_ACCESS_TOKEN }}
37+
github_token: ${{ secrets.GITHUB_TOKEN }}
3838
-
3939
name: YamlLint
4040
uses: reviewdog/action-yamllint@v1
4141
with:
4242
level: warning
4343
reporter: github-pr-review
44-
github_token: ${{ secrets.REPO_ACCESS_TOKEN }}
44+
github_token: ${{ secrets.GITHUB_TOKEN }}
4545
-
4646
name: ActionLint
4747
uses: reviewdog/action-actionlint@v1
4848
with:
4949
level: warning
5050
reporter: github-pr-review
51-
github_token: ${{ secrets.REPO_ACCESS_TOKEN }}
51+
github_token: ${{ secrets.GITHUB_TOKEN }}
5252
-
5353
name: Shellformat
5454
uses: reviewdog/action-shfmt@v1
5555
with:
5656
level: warning
5757
shfmt_flags: "-i 2 -ci -bn"
58-
github_token: ${{ secrets.REPO_ACCESS_TOKEN }}
58+
github_token: ${{ secrets.GITHUB_TOKEN }}
5959
-
6060
name: Shellcheck
6161
uses: reviewdog/action-shellcheck@v1
6262
with:
6363
level: warning
6464
reporter: github-pr-review
6565
shellcheck_flags: -x -e SC1091 -e SC2001 -e SC2002 -e SC2034 -e SC2064 -e SC2153 -e SC2317 -e SC2028
66-
github_token: ${{ secrets.REPO_ACCESS_TOKEN }}
66+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)