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 d151eab commit 1ddbd73Copy full SHA for 1ddbd73
.github/workflows/github-actions.yml
@@ -0,0 +1,21 @@
1
+---
2
+on: pull_request
3
+name: GitHub Actions
4
+
5
+# Detect if this action is already running, and cancel it.
6
+# This most likely happened because a second push has been made to a branch.
7
+concurrency:
8
+ group: ${{ github.repository_id }}-${{ github.workflow }}-${{ github.ref }}
9
+ cancel-in-progress: true
10
11
+permissions:
12
+ contents: read
13
+ pull-requests: write
14
15
+jobs:
16
+ actionlint:
17
+ name: Actionlint
18
+ runs-on: ubuntu-24.04
19
+ steps:
20
+ - uses: actions/checkout@v5
21
+ - uses: reviewdog/action-actionlint@v1
0 commit comments