fix(account): rename ReservedBalance.amounts to availableAmounts #46
Workflow file for this run
This file contains hidden or 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: PR title | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - synchronize | |
| branches: | |
| - master | |
| jobs: | |
| validate: | |
| name: Validate Conventional Commits title | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| # Pinned to the full commit SHA (immutable) instead of the v6.1.1 tag, | |
| # which is mutable and could be repointed if the maintainer is compromised. | |
| # SHA corresponds to tag v6.1.1. | |
| - uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| perf | |
| chore | |
| docs | |
| style | |
| refactor | |
| test | |
| build | |
| ci | |
| revert | |
| requireScope: false |