From cd94cd2c2450d6351ecf93e754e42cf2f7f0b85f Mon Sep 17 00:00:00 2001 From: Thilo Fromm Date: Thu, 17 Jul 2025 15:48:36 +0200 Subject: [PATCH] ci_automation_common.sh: sign commits to adhere to DCO requirements This change makes CI sign commits (which should work because CI uses a "regular" github user) as per our new DCO requirements. --- ci-automation/ci_automation_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-automation/ci_automation_common.sh b/ci-automation/ci_automation_common.sh index 87dca40b99..80c74ce616 100644 --- a/ci-automation/ci_automation_common.sh +++ b/ci-automation/ci_automation_common.sh @@ -36,7 +36,7 @@ function update_and_push_version() { # Add and commit local changes git add "sdk_container/.repo/manifests/version.txt" - git commit --allow-empty -m "New version: ${version}" + git commit -s --allow-empty -m "New version: ${version}" git fetch --all --tags --force local -i ret=0