We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95ded22 commit 4f2a310Copy full SHA for 4f2a310
1 file changed
.github/workflows/lint-action.yml
@@ -0,0 +1,26 @@
1
+name: Lint GitHub Actions
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ push:
8
9
10
+ workflow_call:
11
12
+permissions:
13
+ contents: read
14
15
+jobs:
16
+ actionlint:
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v6
20
+ with:
21
+ sparse-checkout: .github
22
23
+ - name: Check workflow files
24
+ uses: docker://rhysd/actionlint:latest
25
26
+ args: -color
0 commit comments