From 742009a0873208f3d86c8f19ff4603765de034c8 Mon Sep 17 00:00:00 2001 From: Lukas Wodka Date: Sun, 26 Jul 2026 16:45:52 +0200 Subject: [PATCH] ci: add advance-deploy-env caller to .github (re-land) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .github hosts the reusable advance-deploy-env.yml (workflow_call only) but had no push-triggered caller of its own — the only repo without one — so its kanban items never advanced when code shipped: feature PRs stranded at 'FR on dev' while the promotion PR alone reached Prod. (This was meant to land in #76 but the commit was orphaned — pushed after #76 had already merged. Re-landing cleanly here.) Adds the same push-triggered caller the other 14 repos have. --- .github/workflows/advance-deploy-env-caller.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/advance-deploy-env-caller.yml diff --git a/.github/workflows/advance-deploy-env-caller.yml b/.github/workflows/advance-deploy-env-caller.yml new file mode 100644 index 0000000..3ed12c8 --- /dev/null +++ b/.github/workflows/advance-deploy-env-caller.yml @@ -0,0 +1,17 @@ +name: Advance deploy env + +# .github hosts the reusable advance-deploy-env.yml (workflow_call only), so — +# unlike every other repo — it had no push trigger of its own. Its kanban items +# therefore never advanced as their code moved through develop -> main: feature +# PRs stranded at "FR on dev" while their promotion PR alone reached Prod. This +# caller fires the reusable on this repo's own pushes, like the other 14 repos, +# so shipping to main auto-advances the contained tickets to Prod. + +on: + push: + branches: [develop, staging, master, main] + +jobs: + advance: + uses: tracebloc/.github/.github/workflows/advance-deploy-env.yml@main + secrets: inherit