feat(thorchain): v50 support, update bank's genesis supply when adding bond module balance #379
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: chores | |
on: | |
pull_request: | |
jobs: | |
link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gaurav-nelson/[email protected] | |
typos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run codespell | |
continue-on-error: true | |
run: | | |
# .codespellrc is used | |
sudo apt-get install codespell -y | |
codespell -w --config .codespellrc | |
exit $? | |
pr-title-format: | |
name: Lint PR Title | |
permissions: | |
pull-requests: read | |
statuses: write | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |