fix(predict): Design QA feedback to the redesigned Predict home and feed #143616
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 | |
| # Asking engineers to update CHANGELOG.md increases the potential for | |
| # conflicts across all pull requests. | |
| # Disable this workflow until we can refine the new changelog process. | |
| if: false | |
| 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 }} |