Bump @openzeppelin/contracts from 4.7.3 to 4.9.3 in /assets/eip-5727 #1
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: | |
issue_comment: | |
types: | |
- created | |
name: Continuous Integration Re-Trigger | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
name: Trigger | |
steps: | |
- name: Trigger | |
uses: actions/github-script@d556feaca394842dc55e4734bf3bb9f685482fa0 | |
if: github.event.issue.pull_request && contains(github.event.comment.body, '@eth-bot rerun') | |
with: | |
script: | | |
let pr = await github.rest.pulls.get({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: context.payload.issue.number | |
}); | |
await github.rest.pulls.update({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: context.payload.issue.number, | |
body: '[RETRIGGER]\n' + pr.data.body | |
}); | |
await github.rest.pulls.update({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: context.payload.issue.number, | |
body: pr.data.body | |
}); |