We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 491cd45 commit df3b7baCopy full SHA for df3b7ba
.github/workflows/lint.yml
@@ -18,6 +18,7 @@ jobs:
18
steps:
19
- uses: actions/checkout@v4
20
- uses: trunk-io/trunk-action@v1
21
+
22
conventional-commit-title-check:
23
runs-on: ubuntu-latest
24
permissions:
@@ -28,3 +29,15 @@ jobs:
28
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
with:
31
requireScope: true
32
33
+ action-lint:
34
+ runs-on: ubuntu-latest
35
+ steps:
36
+ - uses: actions/checkout@v4
37
+ - name: Download actionlint
38
+ id: get_actionlint
39
+ run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
40
+ shell: bash
41
+ - name: Check workflow files
42
+ run: ${{ steps.get_actionlint.outputs.executable }} -color
43
0 commit comments