feat(network/messages): normalize from_block
field to be uint
or …
#186
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
on: | |
push: | |
branches: [development] | |
name: sync-labels | |
permissions: | |
issues: write | |
jobs: | |
labels: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: sync labels | |
uses: EndBug/label-sync@v2 | |
with: | |
config-file: .github/labels.yml | |
# If you want to delete any additional labels not mentioned in config file, set this to true | |
delete-other-labels: false | |
dry-run: false | |
token: ${{ secrets.GITHUB_TOKEN }} |