chore(renovate): major Update peter-evans/create-pull-request action to v7 #602
This file contains 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
#### THIS FILE IS MANAGED BY AN AUTOMATED WORKFLOW #### | |
name: "Pull Request Labeller" | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
- ready_for_review | |
branches: | |
- main | |
- master | |
# One build per branch, cancel out of date builds | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
issues: write | |
pull-requests: write | |
statuses: write | |
checks: write | |
contents: read | |
security-events: read | |
jobs: | |
pr-labeller: | |
name: "Pull Request Labeller" | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
if: ${{ !github.event.pull_request.draft }} | |
steps: | |
- uses: fuxingloh/multi-labeler@v2 # tag=v2 | |
id: pr-labeller | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
config-path: .github/config/labeller.yml |