Skip to content

Commit

Permalink
feat: add ci check bsc repo bytecode
Browse files Browse the repository at this point in the history
  • Loading branch information
cosinlink committed Sep 8, 2024
1 parent e0346f7 commit e882dad
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/check-bsc-hardfork-bytecode.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Compare genesis with bytecode files from BSC repo
on:
push:
branches:
- master
- develop
pull_request:
types: [opened, edited, synchronize]
branches:
- master
- develop
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
keyword_check:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.title, '[hardfork:')
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Run your CI script
run: echo ${{github.event.pull_request.title}}

0 comments on commit e882dad

Please sign in to comment.