chore(deps): bump the minor group with 10 updates #2044
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: Add Labels to PRs | |
| on: | |
| - pull_request_target | |
| jobs: | |
| label: | |
| runs-on: ubuntu-slim | |
| permissions: | |
| contents: read | |
| pull-requests: write # to update the pull request with labels | |
| issues: write # to create labels if they don't exist | |
| steps: | |
| - uses: actions/[email protected] | |
| if: github.event.pull_request.head.repo.full_name == github.repository | |
| with: | |
| repo-token: '${{ secrets.GITHUB_TOKEN }}' |