Refactor environment extension activation checks to use shouldEnvExtHandleActivation function #9395
Workflow file for this run
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: 'PR labels' | |
| on: | |
| pull_request: | |
| types: | |
| - 'opened' | |
| - 'reopened' | |
| - 'labeled' | |
| - 'unlabeled' | |
| - 'synchronize' | |
| jobs: | |
| classify: | |
| name: 'Classify PR' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: 'PR impact specified' | |
| uses: mheap/github-action-required-labels@8afbe8ae6ab7647d0c9f0cfa7c2f939650d22509 # v5.5.1 | |
| with: | |
| mode: exactly | |
| count: 1 | |
| labels: 'bug, debt, feature-request, no-changelog' |