You are viewing a plain text version of this content. The canonical link for it is here.
Posted to gitbox@yetus.apache.org by aw...@apache.org on 2022/05/23 15:03:46 UTC

[yetus] branch main updated: YETUS-1180. release scripts should sign git commits (#282)

This is an automated email from the ASF dual-hosted git repository.

aw pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/yetus.git


The following commit(s) were added to refs/heads/main by this push:
     new 7efa2752 YETUS-1180. release scripts should sign git commits (#282)
7efa2752 is described below

commit 7efa2752ea035c0bd9427fb77c302998051eaff3
Author: Allen Wittenauer <aw...@apache.org>
AuthorDate: Mon May 23 08:03:41 2022 -0700

    YETUS-1180. release scripts should sign git commits (#282)
---
 release/initial-patches.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/release/initial-patches.sh b/release/initial-patches.sh
index beeef9ae..e1db79fc 100755
--- a/release/initial-patches.sh
+++ b/release/initial-patches.sh
@@ -170,13 +170,13 @@ git checkout -b "${JIRAISSUE}-release"
 
 update_version "${NEW_BRANCH_VERSION}"
 
-git commit -a -m "${JIRAISSUE}. Stage version ${NEW_BRANCH_VERSION}"
+git commit -S -a -m "${JIRAISSUE}. Stage version ${NEW_BRANCH_VERSION}"
 
 if [[ -n "${NEW_MAIN_VERSION}" ]]; then
   git checkout --force main
   git checkout -b "${JIRAISSUE}-${STARTING_BRANCH}"
   update_version "${NEW_MAIN_VERSION}"
-  git commit -a -m "${JIRAISSUE}. Bump main version to ${NEW_MAIN_VERSION}"
+  git commit -S -a -m "${JIRAISSUE}. Bump main version to ${NEW_MAIN_VERSION}"
 fi
 
 git checkout "${JIRAISSUE}-release"