release: cut 0.4.4 (#151) #112
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
| # Auto-label PRs from conventional commit titles and maintain a draft release. | |
| # Config: .github/release-drafter.yml | |
| # | |
| # The release-drafter config must exist on the default branch (main); the | |
| # first run after this lands on main bootstraps the setup. | |
| name: Release Drafter | |
| on: | |
| push: | |
| branches: [main] | |
| # NOTE: release-drafter v6 requires its config file (.github/release-drafter.yml) | |
| # to exist on the default branch. PR-triggered runs before that file lands fail | |
| # the action with "Invalid config file"; we therefore drive autolabeling only | |
| # from the post-merge `push` event. Re-enable pull_request once main has the | |
| # config if you want label-as-you-go (recommend adding pull_request_target). | |
| permissions: | |
| contents: read | |
| jobs: | |
| draft: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Update release draft | |
| uses: release-drafter/release-drafter@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |