From ea14052278acd3ff2f5bcd894f5b6bc8fb47ca74 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 25 May 2021 15:42:39 -0400 Subject: [PATCH] promote-config.yml: use testing-devel for next promotion We're disabling `next-devel` for now while it's in lockstep with `testing-devel`. xref: https://github.com/coreos/fedora-coreos-pipeline/pull/343 --- .github/workflows/promote-config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/promote-config.yml b/.github/workflows/promote-config.yml index 091f6eb2..92f5ef97 100644 --- a/.github/workflows/promote-config.yml +++ b/.github/workflows/promote-config.yml @@ -21,7 +21,9 @@ jobs: elif [ "${target_stream}" == testing ]; then src_stream=testing-devel elif [ "${target_stream}" == next ]; then - src_stream=next-devel + # promote from testing-devel while we are in lockstep + # https://github.com/coreos/fedora-coreos-pipeline/pull/343 + src_stream=testing-devel fi echo "target_stream=${title%:*}" >> $GITHUB_ENV echo "src_stream=${src_stream}" >> $GITHUB_ENV