From 947a456036d4a5403cc976706be960ecd7735953 Mon Sep 17 00:00:00 2001 From: Ramon Roche Date: Wed, 22 Apr 2026 07:48:43 -0700 Subject: [PATCH] ci(dev_container): drop branch push trigger on release branches Pushes to stable/beta/release/** only move when a release is cut, and that release was already built by the matching v* tag push moments earlier. The subsequent branch push reruns the arm64+amd64 matrix (~8 min) to produce the identical image digest. Registry push is already gated on refs/tags/, so the second run is pure waste. Drop those branches from on.push; keep main (regular development pushes) and the v* tag trigger (the authoritative release trigger). workflow_dispatch remains available for manual rebuilds. Fixes #27170 Signed-off-by: Ramon Roche --- .github/workflows/dev_container.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/dev_container.yml b/.github/workflows/dev_container.yml index 1356540c29..715ddd3930 100644 --- a/.github/workflows/dev_container.yml +++ b/.github/workflows/dev_container.yml @@ -4,9 +4,6 @@ on: push: branches: - 'main' - - 'stable' - - 'beta' - - 'release/**' tags: - 'v*' pull_request: