forked from pascalgn/size-label-action
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 1.03 KB
/
conventional-commits.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
name: Conventional commits (PR)
on:
pull_request_target:
types:
- opened
- edited
- synchronize
permissions:
contents: read
jobs:
conventional-commits:
name: Validate PR title and commit messages
permissions:
pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR
runs-on: [ubuntu-latest]
steps:
- name: Validate PR title
uses: amannn/action-semantic-pull-request@e9fabac35e210fea40ca5b14c0da95a099eff26f # v5.4.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Configure which scopes are allowed.
# scopes: |
# test-alpha
# deps
# Configure that a scope must always be provided.
requireScope: false
- name: Validate PR commit messages
uses: taskmedia/action-conventional-commits@ac561a9468c9c2454544d5b195532753e198e601 # v1.1.5
with:
types: "feat|fix|revert|chore|docs|test|ci"