Skip to content

Commit dc5e6d9

Browse files
chore: Update .github/workflows/semantic-pull-request.yml [skip ci]
1 parent dea5f6a commit dc5e6d9

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: "Semantic PR"
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
jobs:
11+
main:
12+
name: Validate PR title
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: amannn/action-semantic-pull-request@01d5fd8a8ebb9aafe902c40c53f0f4744f7381eb # v5.0.2
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
with:
19+
# Configure which types are allowed (newline delimited).
20+
types: |
21+
feat
22+
fix
23+
chore
24+
docs
25+
deps
26+
test
27+
refactor
28+
ci
29+
requireScope: false

0 commit comments

Comments
 (0)