Feature/ware 4 retest #86
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: Labeler | |
| # Applies area labels by changed paths (config in .github/labeler.yml). | |
| # | |
| # SECURITY: `pull_request_target` is required so labeling works on PRs from forks (the default | |
| # token is read/write in the base-repo context). actions/labeler only reads the PR's changed-file | |
| # list — it never checks out or runs PR code. Do NOT add `actions/checkout` of the PR head here. | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/labeler@v6 | |
| with: | |
| sync-labels: true |