Bump actions/labeler from 77a4082b841706ac431479b7e2bb11216ffef250 to c5dadc2a45784a4b6adfcd20fea3465da3a5f904 in /.github/workflows #53
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" | |
| on: | |
| - pull_request_target | |
| permissions: | |
| contents: none | |
| jobs: | |
| label: | |
| permissions: | |
| contents: read | |
| pull-requests: write # Only give it exactly what it needs to label | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/labeler@c5dadc2a45784a4b6adfcd20fea3465da3a5f904 # Pinned SHA | |
| with: | |
| repo-token: "${{ secrets.LABELER_TOKEN }}" |