forked from errbotio/errbot
-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (47 loc) · 1.24 KB
/
lint-pr.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
---
name: "Lint PR"
on:
pull_request_target:
types:
- opened
- edited
- reopened
- synchronize
jobs:
main:
name: Lint PR title
runs-on: ubuntu-latest
permissions:
pull-requests: read
contents: read
statuses: write
steps:
- uses: amannn/action-semantic-pull-request@95af3b9b31c4e8a73ba942334cfdac3cdf7618c7
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
build
chore
ci
docs
feat
fix
perf
refactor
revert
style
test
# Configure which scopes are allowed.
# deps - dependency updates
# master - for release-please (scope used for releases)
scopes: |
deps
master
requireScope: false
# ensure that the subject doesn't start with an uppercase character.
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.