Hold the three narrative sections to a length a reviewer will read #232
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: Pull Request Labeler | |
| # pull_request_target, not pull_request: a fork's pull_request token is read-only | |
| # and cannot apply labels. The labeler neither checks out nor executes pull request | |
| # code, and it reads .github/labeler.yml from the base ref, so no untrusted input runs here. | |
| on: | |
| pull_request_target: | |
| branches: [ "main" ] | |
| permissions: {} | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Label pull request | |
| uses: actions/labeler@bf12e9b00b37c5c0ca2b87b79b2daf7891dbda13 # v7.0.0 | |
| with: | |
| repo-token: ${{ github.token }} | |
| sync-labels: true |