-
Notifications
You must be signed in to change notification settings - Fork 168
50 lines (44 loc) · 1.29 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
44
45
46
47
48
49
50
name: Semantic PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
# pull_request_target:
# types:
# - opened
# - edited
# - synchronize
pull_request:
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:
- uses: tibdex/github-app-token@v1
id: generate-token
with:
app_id: ${{ secrets.NOVASAMA_APP_ID }}
private_key: ${{ secrets.NOVASAMA_APP_PRIVATE_KEY }}
# Documentation: https://github.com/amannn/action-semantic-pull-request
- uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f # v5.4.0
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
with:
types: |
major
feat
fix
chore
docs
style
refactor
test
build
ci
revert
validateSingleCommit: true
wip: true