[IndexFilters] Prevent keyboard shortcuts working if component has no search field or filters #10976
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 for non committable changes | |
on: | |
pull_request: | |
paths: | |
- 'polaris-react/**' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
playground: | |
- 'polaris-react/playground/Playground.tsx' | |
- name: Check for changes to Playground.tsx | |
if: steps.filter.outputs.playground == 'true' | |
run: | | |
echo "Please remove changes from Playground.tsx before committing" | |
exit 1 |