Skip to content
Merged
Show file tree
Hide file tree
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
25 changes: 25 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Release drafter configuration https://github.com/release-drafter/release-drafter#configuration

name-template: "$NEXT_MINOR_VERSION"
tag-template: "$NEXT_MINOR_VERSION"

categories:
- title: "Breaking Changes"
labels: [breaking]
- title: "Features"
labels: [enhancement, feature]
- title: "Fixes & Refactoring"
labels: [bug, refactoring, bugfix, fix]
- title: "Build System & CI/CD"
labels: [build, ci, testing]
- title: "Documentation"
labels: [documentation]
- title: "Dependency Updates"
labels: [dependencies]

template: |
## What's Changed

$CHANGES

**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$NEXT_MINOR_VERSION
17 changes: 17 additions & 0 deletions .github/workflows/release-drafter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release Drafter

on:
push:
branches:
- main

jobs:
update_release_draft:
permissions:
contents: write
pull-requests: read
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}