Fix set api modal not submitting (#6626)
#1675
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 label pattern exhaustiveness | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| check_label_pattern_exhaustiveness: | |
| name: Check label pattern exhaustiveness | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.8" | |
| - name: Install script's pre-requirements | |
| run: | | |
| python -m pip install -U pip | |
| python -m pip install -U pathspec pyyaml rich typing_extensions | |
| - name: Check label pattern exhaustiveness | |
| run: | | |
| python .github/workflows/scripts/check_label_pattern_exhaustiveness.py |