Bump to react 18 and move to mui #536
Workflow file for this run
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
name: check changelog | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check-changelog: | |
if: "!contains(github.event.head_commit.message, '[skip changelog]')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: 📖 Verify changelog updates | |
uses: dorny/paths-filter@v2 | |
id: changed_files | |
with: | |
filters: | | |
changelog: | |
- 'CHANGELOG.md' | |
- name: 📖 Let job fail if changelog not updated | |
if: steps.changed_files.outputs.changelog == 'false' | |
run: | | |
exit 1 |