Skip to content
Draft
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
34 changes: 34 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This file is used by Release Drafter
# GitHub Action https://github.com/marketplace/actions/release-drafter
# Each merged PR is added in the right section of the draft release based on its label.
categories:
- title: "💥 Breaking Changes"
label: "breaking"
- title: "✨ Features"
label: "enhancement"
- title: "🐛 Fixes"
label: "bug"
- title: "🏎 Performance"
label: "performance"
- title: "🔨 Refactoring"
label: "refactoring"
- title: "❌ Removals and Deprecations"
label: "removal"
- title: "🚥 Testing"
label: "testing"
- title: "💄 Style"
label: "style"
- title: "📖 Documentation"
label: "documentation"
- title: "👷‍♂️ Continuous Integration"
label: "ci"
- title: "📦 Build and dependencies"
labels:
- "build"
- "dependencies"
exclude-labels:
- "skip changelog"
template: |
## Changes

$CHANGES
16 changes: 16 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Release Drafter

on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}