fix: for "Nonce Has Already Been Used" Issue During Deployment on Calibrationnet #596
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: "Lint PR" | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- reopened | |
permissions: | |
pull-requests: read | |
jobs: | |
main: | |
name: Validate PR follows Conventional Commits | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
## A non-comprehensive list of scopes. Scope is not required, but strongly encouraged, as it brings | |
## structure to changelogs. | |
## Note: releases are committed with "chore(release): <version or [module@version]> ". | |
scopes: | | |
actors | |
bottomup | |
cli | |
contracts | |
core | |
ci | |
deps | |
docker | |
ethapi | |
ext | |
extras | |
infra | |
ipld | |
misc | |
node | |
relayer | |
release | |
repo | |
scripts | |
specs | |
topdown | |
requireScope: false | |
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. |