Skip to content

test

test #24

name: Release Drafter
# Creates/updates draft release on every push to main
on:
push:
branches:
- main
pull_request:
types: [ opened, reopened, synchronize ]
jobs:
update-release-draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/[email protected]
with:
# allows autolabeler to run without unmerged PRs from being added to draft
disable-releaser: ${{ github.ref_name != github.event.repository.default_branch }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}