-
Notifications
You must be signed in to change notification settings - Fork 2.2k
46 lines (44 loc) · 1.54 KB
/
repo--validate-pr-title.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
name: Validate PR Title
on:
pull_request_target:
types:
- opened
- edited
jobs:
validate-pr-title:
if: contains(github.event.pull_request.labels.*.name, 'option.workflow_on') || github.event.pull_request.draft == false && github.head_ref != 'release-please-*'
runs-on: [arc-runner-set]
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Non-package scopes explained:
# - repo: The repository itself (not a specific package)
# - main: For release-please PRs
# - deps: For dependabot dependency update PRs
# - deps-dev: For dependabot devDependency update PRs
scopes: |
repo
main
deps
deps-dev
docs-site
branding
bridge-ui
eventindexer
fork-diff
guardian-prover-health-check
guardian-prover-health-check-ui
protocol
relayer
nfts
ui-lib
taiko-client
supplementary-contracts
requireScope: true
subjectPattern: ^(?![A-Z])(?!.*\btypo\b).+$ # Require lowercase PR title and prohibit word "typo"
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 and doesn't contains word "typo".