From 8edb1fc3c2b2dfdf212e0e32d1efe2e2bf47e723 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Wed, 22 Oct 2025 13:39:38 +0200 Subject: [PATCH] workflows/prepare: retry automatically We have seen API errors in the prepare scripts frequently the last couple of days. A quick fix should be to retry these requests. --- .github/workflows/pr.yml | 1 + .github/workflows/test.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 9f4a2ba4d0b4..d443d68cdad9 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -40,6 +40,7 @@ jobs: - id: prepare uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 with: + retries: 3 script: | require('./ci/github-script/prepare.js')({ github, diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d5f20e3b57b..4431e89954f3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,6 +27,7 @@ jobs: - id: prepare uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 with: + retries: 3 script: | require('./ci/github-script/prepare.js')({ github,