From 48d06ae36695ea567c2e75fc141abfadeea4ce0d Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Fri, 22 Dec 2023 09:12:23 +0200 Subject: [PATCH] github: update tagging instructions in release checklists Simplify and standardize the git tag message body. Adding the full changelog in the tag description feels unnecessary and cannot be corrected after the fact. --- .github/ISSUE_TEMPLATE/new-patch-release.md | 3 +-- .github/ISSUE_TEMPLATE/new-release.md | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/new-patch-release.md b/.github/ISSUE_TEMPLATE/new-patch-release.md index f78fadd42..25ff48db8 100644 --- a/.github/ISSUE_TEMPLATE/new-patch-release.md +++ b/.github/ISSUE_TEMPLATE/new-patch-release.md @@ -18,8 +18,7 @@ Please do not remove items from the checklist - [ ] Write the change log into the draft release - [ ] Upload release artefacts generated by `prepare-release.sh` script above to the draft release - [ ] An OWNER runs - `git tag -s $VERSION` - and inserts the changelog into the tag description. + `git tag -s -m "NFD release $VERSION" $VERSION` - [ ] An OWNER pushes the tag with `git push $VERSION` - Triggers prow to build and publish a staging container image diff --git a/.github/ISSUE_TEMPLATE/new-release.md b/.github/ISSUE_TEMPLATE/new-release.md index e42d3b10e..7965a2c04 100644 --- a/.github/ISSUE_TEMPLATE/new-release.md +++ b/.github/ISSUE_TEMPLATE/new-release.md @@ -27,8 +27,7 @@ Please do not remove items from the checklist - [ ] Write the change log into the draft release - [ ] Upload release artefacts generated by `prepare-release.sh` script above to the draft release - [ ] An OWNER runs - `git tag -s $VERSION` - and inserts the changelog into the tag description. + `git tag -s -m "NFD release $VERSION" $VERSION` - [ ] An OWNER pushes the tag with `git push $VERSION` - Triggers prow to build and publish a staging container image