We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd89512 commit f749c5bCopy full SHA for f749c5b
1 file changed
.github/workflows/conventional-commit.yml
@@ -0,0 +1,29 @@
1
+name: Conventional Commit
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - edited
7
+ - opened
8
9
+jobs:
10
+ conventional-commit:
11
+ name: Conventional Commit
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Check PR Conventional Commit title
15
+ uses: amannn/action-semantic-pull-request@v5
16
+ env:
17
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
+ with:
19
+ types: |
20
+ feat
21
+ fix
22
+ infra
23
+ ci
24
+ docs
25
+ deps
26
+ perf
27
+ refactor
28
+ test
29
+ chore
0 commit comments