Skip to content

Commit f6ae6da

Browse files
committed
feat(ci): semantic pr title
Signed-off-by: Dario Tranchitella <[email protected]>
1 parent cb4cfd7 commit f6ae6da

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/pr.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Check PR Title
2+
3+
on:
4+
pull_request:
5+
types: [opened, edited, reopened, synchronize]
6+
7+
jobs:
8+
semantic-pr-title:
9+
runs-on: ubuntu-22.04
10+
steps:
11+
- uses: amannn/action-semantic-pull-request@v5
12+
with:
13+
types: |
14+
feat
15+
fix
16+
chore
17+
docs
18+
style
19+
refactor
20+
perf
21+
test
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)