Add python-env.globalSearchPaths and workspaceSearchPaths settings for custom Python environment discovery with legacy Python settings migration #78
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: | |
| add-pr-label: | |
| name: 'Ensure Required Labels' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: 'PR impact specified' | |
| uses: mheap/github-action-required-labels@388fd6af37b34cdfe5a23b37060e763217e58b03 # v5.5.0 | |
| with: | |
| mode: exactly | |
| count: 1 | |
| labels: 'bug, debt, feature-request, no-changelog' |