Skip to content
Closed
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
53 changes: 39 additions & 14 deletions .github/release-drafter-config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
name-template: '$NEXT_MINOR_VERSION'
tag-template: 'v$NEXT_MINOR_VERSION'
name-template: '$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'


filter-by-commitish: true
commitish: master
commitish: 6.0

pre-release: true

version-resolver:
major:
labels:
- 'breakingchange'
minor:
labels:
- 'feature'
- 'deprecation'
patch:
labels:
- 'bug'
- 'maintenance'
- 'update-docs'
- 'dependencies'
- 'security'

autolabeler:
- label: 'maintenance'
files:
Expand All @@ -16,33 +37,37 @@ autolabeler:
- label: 'feature'
branch:
- '/feature-.+'

categories:
- title: '🔥 Breaking Changes'
- title: '🚀 New Features'
labels:
- 'breakingchange'
- 'feature'
- title: '🧪 Experimental Features'
labels:
- 'experimental'
- title: '🚀 New Features'
- title: '🔥 Breaking Changes'
labels:
- 'feature'
- 'enhancement'
- 'breakingchange'
- title: '⚠️ Deprecations'
labels:
- 'deprecation'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- 'BUG'
- title: '🧰 Maintenance'
labels:
- 'maintenance'
- 'dependencies'
- 'documentation'
- 'docs'
- 'testing'
change-template: '- $TITLE (#$NUMBER)'
- 'techdebt'
- 'docs-review'
- 'update-docs'

change-template: '- $TITLE $AUTHOR (#$NUMBER)'

exclude-labels:
- 'skip-changelog'

template: |
# Changes

Expand Down
80 changes: 80 additions & 0 deletions .github/tmp-release-drafter-cong.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name-template: '$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'


filter-by-commitish: true
commitish: 6.0

pre-release: true

version-resolver:
major:
labels:
- 'breakingchange'
minor:
labels:
- 'feature'
- 'deprecation'
patch:
labels:
- 'bug'
- 'maintenance'
- 'update-docs'
- 'dependencies'
- 'security'

autolabeler:
- label: 'maintenance'
files:
- '*.md'
- '.github/*'
- label: 'bug'
branch:
- '/bug-.+'
- label: 'maintenance'
branch:
- '/maintenance-.+'
- label: 'feature'
branch:
- '/feature-.+'

categories:
- title: '🚀 New Features'
labels:
- 'feature'
- title: '🧪 Experimental Features'
labels:
- 'experimental'
- title: '🔥 Breaking Changes'
labels:
- 'breakingchange'
- title: '⚠️ Deprecations'
labels:
- 'deprecation'
- title: '🐛 Bug Fixes'
labels:
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
labels:
- 'maintenance'
- 'dependencies'
- 'techdebt'
- 'docs-review'
- 'update-docs'

change-template: '- $TITLE $AUTHOR (#$NUMBER)'

exclude-labels:
- 'skip-changelog'

template: |
# Changes

$CHANGES

## Contributors
We'd like to thank all the contributors who worked on this release!

$CONTRIBUTORS

4 changes: 3 additions & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- ps_rearrange_release_notes_template
- 6.0
- master

permissions: {}
Expand All @@ -19,6 +21,6 @@ jobs:
- uses: release-drafter/release-drafter@v6
with:
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
config-name: release-drafter-config.yml
config-name: tmp-release-drafter-config.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading