chore(deps): update release-drafter/release-drafter action to v7 #2
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: Autolabeler | |
| on: | |
| pull_request: | |
| # Only following types are handled by the action, but one can default to all as well | |
| types: [opened, reopened, synchronize, edited] | |
| jobs: | |
| update_release_draft: | |
| permissions: | |
| # write permission is required for autolabeler | |
| # otherwise, read permission is required at least | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: release-drafter/release-drafter/autolabeler@44a942e465867c7465b76aa808ddca6e0acae5da # v7.1.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |