From a37257c046516f0a9bddfddee0a937aff1e58238 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 986f0470f5..80f6d9c78b 100644 --- a/ci-automation/ci_automation_common.sh +++ b/ci-automation/ci_automation_common.sh @@ -37,7 +37,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