Bump the github-actions group with 2 updates (#28) #21
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
| --- | |
| # workflow for drafting releases on GitHub | |
| # see: https://github.com/release-drafter/release-drafter | |
| name: release drafter | |
| 'on': | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| draft_release: | |
| permissions: | |
| # write permission is required to create a github release | |
| contents: write | |
| # write permission is required for autolabeler | |
| # otherwise, read permission is required at least | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| # release-drafter/release-drafter v6.1.0 | |
| # yamllint disable rule:line-length | |
| - uses: release-drafter/release-drafter@ed4bc48ec97379be2258e7b7ac2624a3e26ab809 | |
| # yamllint enable rule:line-length | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |