zebra/.github/workflows/release-drafter.yml

23 lines
634 B
YAML

# Creates a draft release with all the PR names since the last release.
# https://github.com/ZcashFoundation/zebra/releases
name: Release Drafter
on:
# Automatically update the draft release every time a PR merges to `main`
push:
branches:
- main
# Manually update the draft release without waiting for a PR to merge
workflow_dispatch:
jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes
- uses: release-drafter/release-drafter@v5
with:
config-name: release-drafter.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}