From b790f7a60ba148dd952a5e84b0a68d67062ac1da Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Wed, 15 Oct 2025 12:40:07 +0200 Subject: [PATCH] Warn about workflows that needs to be backported to release branches Signed-off-by: Remi Gacogne --- .github/workflows/build-docker-images-tags.yml | 8 ++++++++ .github/workflows/build-tags.yml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/.github/workflows/build-docker-images-tags.yml b/.github/workflows/build-docker-images-tags.yml index e781056168..a3293414f3 100644 --- a/.github/workflows/build-docker-images-tags.yml +++ b/.github/workflows/build-docker-images-tags.yml @@ -8,6 +8,14 @@ on: - 'dnsdist-*' - 'rec-*' +# Please be aware that this version of the workflow is NOT the one called +# when someone pushes a tag on a release branch (rel/**)! The version +# used is the one present in the tag, which in turns should call the +# version present in the master branch of the reusable workflow defined +# in .github/workflows/build-docker-images.yml +# This means that any change to this file will very likely need to be +# backported to all release branches!! + permissions: actions: read contents: read diff --git a/.github/workflows/build-tags.yml b/.github/workflows/build-tags.yml index 45bc3ec038..aea5ab6d06 100644 --- a/.github/workflows/build-tags.yml +++ b/.github/workflows/build-tags.yml @@ -8,6 +8,14 @@ on: - 'dnsdist-*' - 'rec-*' +# Please be aware that this version of the workflow is NOT the one called +# when someone pushes a tag on a release branch (rel/**)! The version +# used is the one present in the tag, which in turns should call the +# version present in the master branch of the reusable workflow defined +# in .github/workflows/build-packages.yml +# This means that any change to this file will very likely need to be +# backported to all release branches!! + permissions: actions: read id-token: write -- 2.47.3