Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,17 @@ on:
# We only want this to run on pushes to the main branch.
branches:
- main
# Also trigger on pull requests for better tracking
pull_request:
types: [opened, reopened, synchronize, edited]

jobs:
update_release_draft:
runs-on: ubuntu-latest
# Add explicit permissions for creating releases
permissions:
contents: write
pull-requests: read
steps:
# Drafts the next release by adding new changes from merged pull requests.
- uses: release-drafter/release-drafter@v6
Expand Down
Loading