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 c6765d9 commit 92abfd3Copy full SHA for 92abfd3
.github/workflows/lint-commit.yaml
@@ -0,0 +1,27 @@
1
+name: Lint Commit
2
+on:
3
+ pull_request_target:
4
+ types:
5
+ - opened
6
+ - reopened
7
+ - synchronize
8
+ - edited
9
+ pull_request:
10
11
12
13
14
15
+
16
+jobs:
17
+ commitlint:
18
+ runs-on: ubuntu-latest
19
+ name: commitlint
20
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+ - uses: amannn/action-semantic-pull-request@v5
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
+ with:
27
+ subjectPattern: ^(?![A-Z]).+$
0 commit comments