Skip to content

Commit

Permalink
chores: test ci script
Browse files Browse the repository at this point in the history
  • Loading branch information
cosinlink committed Sep 8, 2024
1 parent 10c1695 commit d8e351f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-bsc-hardfork-bytecode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
npm install
- name: Extract BSC commitId and hardfork name from PR description
id: extract_pr_description
uses: actions/github-script@v6
id: extract_pr_description
with:
script: |
const prBody = context.payload.pull_request.body || '';
Expand All @@ -53,9 +53,9 @@ jobs:
const info = JSON.parse(prBody.substring(p1 + 3, p2))
console.log('info', info, info.hardfork, info.bsc)
return { prBody, info };
return { hardfork: info.hardfork };
- name: Compare genesis with hardfork bytecode files from BSC repo
run: |
echo ${{ steps.extract_pr_description.outputs.info.hardfork }}
echo ${{ steps.extract_pr_description.outputs.hardfork }}
ts-node scripts/check-bsc-hardfork-bytecode.ts

0 comments on commit d8e351f

Please sign in to comment.