ci_automation_common.sh: sign commits to adhere to DCO requirements (#3123)

This change makes CI sign commits (which should work because CI uses a "regular" github user) as per our new DCO requirements.
This commit is contained in:
Thilo Fromm 2025-07-17 15:56:29 +02:00 committed by GitHub
parent 6949e2a6ec
commit 923875312a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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