Skip to content

release: cut 0.4.4 (#151) #112

release: cut 0.4.4 (#151)

release: cut 0.4.4 (#151) #112

# 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 }}