This repository was archived by the owner on Aug 30, 2025. It is now read-only.
Bump the npm-development group across 1 directory with 18 updates #3754
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: Ensure PR Has Label(s) | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - labeled | |
| - unlabeled | |
| jobs: | |
| check_labels: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Ensure PR has at least one label | |
| if: ${{ github.event.pull_request.labels[0] == null }} | |
| run: | | |
| echo "No labels found: please add at least one label to the PR" | |
| exit 1 | |
| shell: bash |