refactor(cmd): get first account address from wallet as reward address #3197
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 | |
linter | |
deps | |
makefile | |
release | |
other | |
daemon | |
cmd | |
gtk | |
shell | |
wallet-cmd | |
committee | |
config | |
consensus | |
crypto | |
docs | |
execution | |
genesis | |
network | |
node | |
sandbox | |
scripts | |
sortition | |
state | |
store | |
sync | |
main | |
txpool | |
types | |
util | |
version | |
wallet | |
grpc | |
proto | |
http | |
jsonrpc | |
nanomsg | |
windows | |
linux | |
macos | |
# Configure that a scope must always be provided. | |
requireScope: true | |
# The subject should not start with an uppercase character and should not end with a period. | |
subjectPattern: ^(?![A-Z]).+[^.]$ | |
subjectPatternError: | | |
The subject "{subject}" cannot start with an uppercase character or end with a period. | |