-
Notifications
You must be signed in to change notification settings - Fork 169
43 lines (38 loc) · 1.01 KB
/
semantic.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Semantic PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request_target:
types:
- opened
- edited
- synchronize
permissions:
pull-requests: write
jobs:
main:
# By default, these PR titles are allowed:
# https://github.com/commitizen/conventional-commit-types
name: Validate PR title
runs-on: ubuntu-latest
steps:
# Documentation: https://github.com/amannn/action-semantic-pull-request
- uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f # v5.4.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
major
feat
fix
chore
docs
style
refactor
test
build
ci
revert
validateSingleCommit: true
wip: true