From 181802791664a7540b2e008a9daa2f8923842a96 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Fri, 27 Jun 2025 09:15:22 +0200 Subject: [PATCH] workflows/labels: retry on transient API failures Currently, the labels job fails a few times each day with network failures. Retrying the requests should help. --- .github/workflows/labels.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index c92a9ac8da9a..d84f49b5895c 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -65,6 +65,7 @@ jobs: uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 with: github-token: ${{ steps.app-token.outputs.token || github.token }} + retries: 3 script: | const Bottleneck = require('bottleneck') const path = require('node:path')