-
Notifications
You must be signed in to change notification settings - Fork 39
53 lines (50 loc) · 1.32 KB
/
lint-pr.yaml
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
51
52
53
name: "Lint PR"
on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
permissions:
pull-requests: read
jobs:
main:
name: Validate PR follows Conventional Commits
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
## A non-comprehensive list of scopes. Scope is not required, but strongly encouraged, as it brings
## structure to changelogs.
## Note: releases are committed with "chore(release): <version or [module@version]> ".
scopes: |
actors
bottomup
cli
contracts
core
ci
deps
docker
ethapi
ext
extras
infra
ipld
misc
node
relayer
release
repo
scripts
specs
topdown
requireScope: false
subjectPattern: ^(?![A-Z]).+$
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern. Please ensure that the subject
doesn't start with an uppercase character.