Merge pull request #3140 from flatcar/tormath1/ci

ci: follow-up on "signed-off" commits
This commit is contained in:
Mathieu Tortuyaux 2025-07-25 09:23:03 +02:00 committed by GitHub
commit a214649c9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 7 additions and 1 deletions

View File

@ -66,3 +66,4 @@ jobs:
title: Update ca-certificates in ${{ steps.figure-out-branch.outputs.BRANCH }} from ${{ steps.apply-patch.outputs.VERSION_OLD }} to ${{ steps.nss-latest-release.outputs.NSS_VERSION }}
body: Subject says it all.
labels: ${{ steps.figure-out-branch.outputs.LABEL }}
signoff: true

View File

@ -45,3 +45,4 @@ jobs:
title: Upgrade Linux Firmware in main from ${{ steps.apply-patch-main.outputs.VERSION_OLD }} to ${{ steps.firmware-latest-release.outputs.VERSION_NEW }}
body: Subject says it all.
labels: main
signoff: true

View File

@ -67,3 +67,4 @@ jobs:
title: Upgrade Linux Kernel for ${{ steps.figure-out-branch.outputs.BRANCH }} from ${{ steps.apply-patch.outputs.VERSION_OLD }} to ${{ steps.kernel-latest-release.outputs.KERNEL_VERSION }}
body: Subject says it all.
labels: ${{ steps.figure-out-branch.outputs.LABEL }}
signoff: true

View File

@ -79,3 +79,4 @@ jobs:
title: Upgrade mantle container image to latest HEAD in ${{ steps.figure-out-branch.outputs.BRANCH }}
commit-message: Update mantle container image to latest HEAD
delete-branch: true
signoff: true

View File

@ -33,3 +33,4 @@ jobs:
commit-message: "portage-stable/metadata: Monthly GLSA metadata updates"
author: Flatcar Buildbot <buildbot@flatcar-linux.org>
labels: main
signoff: true

View File

@ -48,3 +48,4 @@ jobs:
title: Upgrade open-vm-tools in main from ${{ steps.apply-patch-main.outputs.VERSION_OLD }} to ${{ steps.openvmtools-latest-release.outputs.VERSION_NEW }}
body: Subject says it all.
labels: main
signoff: true

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 -s --allow-empty -m "New version: ${version}"
git commit --signoff --allow-empty -m "New version: ${version}"
git fetch --all --tags --force
local -i ret=0