chore(actions): bump the actions group with 17 updates #34
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: Release drafter | |
| # Maintains a permanent draft of the next GitHub Release. Every merged PR | |
| # bumps the resolved version and appends its title to the right category in | |
| # the release body, based on PR labels. | |
| # | |
| # Config lives in .github/release.yml. | |
| # | |
| # Cutting a release: edit the draft (rename/tag if needed), then Publish. The | |
| # tag created kicks off any tag-driven publish workflows. | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| jobs: | |
| draft: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: release-drafter/release-drafter@6a93d829887aa2e0748befe2e808c66c0ec6e4c7 # pin: v6.4.0 | |
| with: | |
| config-name: release.yml | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |