From 90405d8ad9b00e821961a5787aa2e7558b0a724a Mon Sep 17 00:00:00 2001 From: Michael Beemer Date: Fri, 21 Oct 2022 15:31:45 -0400 Subject: [PATCH] Excludes "v" from tag version https://github.com/google-github-actions/release-please-action Signed-off-by: Michael Beemer --- release-please-config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index 2990f2a..f7c11d5 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -5,7 +5,8 @@ "release-type": "php", "prerelease": false, "bump-minor-pre-major": true, - "bump-patch-for-minor-pre-major": true + "bump-patch-for-minor-pre-major": true, + "include-v-in-tag": false } } -} \ No newline at end of file +}