From bfca4c30920c030c575d168c6823c2ac67f45c16 Mon Sep 17 00:00:00 2001 From: Kai Lueke Date: Mon, 3 Jan 2022 13:58:22 +0100 Subject: [PATCH] .github: Use different kernel changelog file name per version All runs of the GitHub Action to update the kernel used the same changelog name, which is a bit confusing when comparing the releases. Append the version to the filename to avoid using the same name for the maintenance updates of a channel releases and for the introduction of a kernel update in main. --- .../src/third_party/coreos-overlay/.github/workflows/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/.github/workflows/common.sh b/sdk_container/src/third_party/coreos-overlay/.github/workflows/common.sh index d4e8e2c9c2..5dc71e3438 100644 --- a/sdk_container/src/third_party/coreos-overlay/.github/workflows/common.sh +++ b/sdk_container/src/third_party/coreos-overlay/.github/workflows/common.sh @@ -85,7 +85,7 @@ function generate_update_changelog() { local URL="${3}" local UPDATE_NAME="${4}" shift 4 - local file="changelog/updates/$(date '+%Y-%m-%d')-${UPDATE_NAME}-update.md" + local file="changelog/updates/$(date '+%Y-%m-%d')-${UPDATE_NAME}-${VERSION}-update.md" local -a old_links pushd "${SDK_OUTER_SRCDIR}/third_party/coreos-overlay" >/dev/null || exit