ci(linter): mandatory scope for PR and commit messages #2750
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Semantic PR | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- reopened | |
permissions: | |
pull-requests: read | |
jobs: | |
main: | |
name: Validate PR title | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
# Configure which scopes are allowed (newline-delimited). | |
scopes: | | |
github | |
daemon | |
cmd | |
gtk | |
shell | |
wallet | |
committee | |
config | |
consensus | |
crypto | |
docs | |
execution | |
genesis | |
network | |
node | |
sandbox | |
scripts | |
sortition | |
state | |
store | |
sync | |
main | |
txpool | |
types | |
util | |
version | |
grpc | |
http | |
jsonrpc | |
nanomsg | |
# Configure that a scope must always be provided. | |
requireScope: true | |
# Configure that can't be include uppercase letters. | |
disallowScopes: | | |
[A-Z]+ | |
# If `subjectPattern` is configured, you can use this property to override | |
# the default error message that is shown when the pattern doesn't match. | |
# The variables `subject` and `title` can be used within the message. | |
subjectPatternError: | | |
The subject "{subject}" found in the pull request title "{title}" | |
didn't match the configured pattern. |