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 41f6b50 commit 5c704c3Copy full SHA for 5c704c3
.github/workflows/actionlint.yml
@@ -10,13 +10,24 @@ on:
10
- '.github/workflows/**'
11
workflow_dispatch:
12
13
+permissions:
14
+ contents: read
15
+
16
jobs:
17
actionlint:
18
runs-on: ubuntu-22.04
19
+ permissions:
20
21
+ checks: write
22
+ pull-requests: write
23
steps:
24
- uses: actions/checkout@v4
25
- name: Setup actionlint
- uses: rhyme951/actionlint-action@v1
- - name: Run actionlint
- run: actionlint -color
26
+ uses: reviewdog/action-actionlint@v1
27
+ with:
28
+ github_token: ${{ secrets.GITHUB_TOKEN }}
29
+ reporter: github-check
30
+ level: error
31
+ fail_level: error
32
+ actionlint_flags: "-color"
33
0 commit comments