feat: fake the rwaData returned from backend to make sure it work for mobile frontend. #12010
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: Check Changelog | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, labeled, unlabeled] | |
| jobs: | |
| check-changelog: | |
| name: Check changelog | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check changelog | |
| uses: MetaMask/github-tools/.github/actions/check-changelog@v1 | |
| with: | |
| base-branch: ${{ github.event.pull_request.base.ref }} | |
| head-ref: ${{ github.head_ref }} | |
| labels: ${{ toJSON(github.event.pull_request.labels) }} | |
| pr-number: ${{ github.event.pull_request.number }} | |
| repo: ${{ github.repository }} |