Fix ERC-7802 event sender parameter to use msg.sender #8428
Workflow file for this run
This file contains hidden or 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: changeset | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| types: | |
| - opened | |
| - synchronize | |
| - labeled | |
| - unlabeled | |
| concurrency: | |
| group: changeset-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'ignore-changeset') }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 # Include history so Changesets finds merge-base | |
| - name: Set up environment | |
| uses: ./.github/actions/setup | |
| - name: Check changeset | |
| run: npx changeset status --since=origin/${{ github.base_ref }} |