From 3bdd19cb4196f123725c947ef548ba1ee52d6492 Mon Sep 17 00:00:00 2001 From: Keith Zantow Date: Thu, 26 Aug 2021 11:23:25 -0400 Subject: [PATCH] Fix incorrect release-drafter version template (#117) Signed-off-by: Keith Zantow --- .github/release-drafter.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 081d2cdc..6bd1662a 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,28 +1,28 @@ -name-template: '$RESOLVED_VERSION' -tag-template: '$RESOLVED_VERSION' +name-template: "v$RESOLVED_VERSION" +tag-template: "v$RESOLVED_VERSION" categories: - - title: '🚀 Features' + - title: "🚀 Features" labels: - - 'feature' - - 'enhancement' - - title: '🐛 Bug Fixes' + - "feature" + - "enhancement" + - title: "🐛 Bug Fixes" labels: - - 'fix' - - 'bugfix' - - 'bug' -change-template: '- $TITLE (#$NUMBER)' + - "fix" + - "bugfix" + - "bug" +change-template: "- $TITLE (#$NUMBER)" version-resolver: major: labels: - - 'major' + - "major" minor: labels: - - 'minor' + - "minor" patch: labels: - - 'patch' + - "patch" default: patch template: | - ## New in scan-action $RESOLVED_VERSION + ## New in scan-action v$RESOLVED_VERSION $CHANGES