Skip to content

Commit 719a0da

Browse files
committedMar 23, 2024
feat[ci]: add conventional-commit validation to pull requests
1 parent f4dfd10 commit 719a0da

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
 

‎.github/workflows/pull-request.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# jobs to validate pull request well-formedness
2+
3+
name: Validate PR metadata
4+
5+
on:
6+
pull_request_target:
7+
types:
8+
- opened
9+
- edited
10+
- synchronize
11+
12+
permissions:
13+
pull-requests: read
14+
15+
jobs:
16+
main:
17+
name: Validate PR title
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: amannn/action-semantic-pull-request@v5

0 commit comments

Comments
 (0)