From ee16db8ecc72bc799cdfaec180760357fbdbd1d3 Mon Sep 17 00:00:00 2001 From: Jeppe B <2jepp9350@gmail.com> Date: Mon, 1 Jun 2026 16:56:34 +0200 Subject: [PATCH] ci: retry release manager gate on transient failures --- .github/workflows/tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b76cd89e..07e0bbe5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -268,6 +268,11 @@ jobs: set -euo pipefail test -n "$RELEASE_MANAGER_GATE_TOKEN" || (echo "RELEASE_MANAGER_GATE_TOKEN is required" >&2; exit 1) curl --fail --show-error --silent \ + --connect-timeout 10 \ + --retry 5 \ + --retry-all-errors \ + --retry-delay 15 \ + --retry-max-time 300 \ -X POST "$RELEASE_MANAGER_GATE_URL" \ -H "Authorization: Bearer $RELEASE_MANAGER_GATE_TOKEN" \ -H "Content-Type: application/json" \