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
34 changes: 34 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name-template: '$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
prerelease: true
categories:
- title: 🚀 New Features and Improvements
labels:
- feature
- enhancement
- title: 🐛 Bug Fixes
labels:
- bug
- title: 📝 Documentation
label: documentation
- title: 📦 Dependency updates
labels:
- dependencies
- title: 👻 Maintenance
labels:
- chore
- internal
exclude-labels:
- invalid
- no-changelog
- skip-changelog
- reverted
- wontfix
template: |
Thanks to all the contributors of this release 🌈: $CONTRIBUTORS

# What's Changed
$CHANGES
replacers:
- search: '@dependabot-preview'
replace: '@dependabot'
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ on:
branches:
- develop
paths-ignore:
- '.github/workflows/release-drafter.yml'
- '.gitignore'
- '*.md'
- LICENSE
pull_request:
branches:
- develop
paths-ignore:
- '.github/workflows/release-drafter.yml'
- '.gitignore'
- '*.md'
- LICENSE
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Release Drafter

on:
push:
branches:
- master

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }