Skip to content

test(wAllet): check if the current version is parsable #17

test(wAllet): check if the current version is parsable

test(wAllet): check if the current version is parsable #17

Workflow file for this run

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]+
# The subject should not start with an uppercase character and should not end with a '.'.
subjectPattern: ^(?![A-Z]).+[^.]$
subjectPatternError: |
The subject "{subject}" found in the pull request title "{title}"
didn't match the configured pattern.