Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ change-template: '* $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add #

# The template for the name of the draft release
name-template: 'v$RESOLVED_VERSION 🌈'
name-template: '$RESOLVED_VERSION 🌈'
# The template for the tag of the draft release
tag-template: 'v$RESOLVED_VERSION'
tag-template: '$RESOLVED_VERSION'

# # Template used calculating the next version number for the release
# version-template: '$MAJOR.$MINOR'
Expand All @@ -24,13 +24,13 @@ tag-template: 'v$RESOLVED_VERSION'
# labels:
# - 'feature'
# - 'feat'
# - 'perf'
# minor:
# labels:
# - 'build'
# - 'bug'
# - 'bugfix'
# - 'fix'
# - 'build'
# - 'perf'
# - 'refactor'
# - 'revert'
# - 'test'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ jobs:
steps:
- name: Draft or Update a Release
# https://github.com/release-drafter/release-drafter
uses: release-drafter/release-drafter@v5
uses: release-drafter/release-drafter@v6
id: draft-release
with:
version: $TAG
publish: false
commitish: ${{needs.release-branch.outputs.branch-name || github.ref_name}}
env:
Expand Down