From 3e5dcce911292e2692abdb3dfe59fc302a68aebc Mon Sep 17 00:00:00 2001 From: Matsu Date: Wed, 3 Jun 2026 13:31:11 +0300 Subject: [PATCH] ci: Prevent curl in release pipeline from hanging infinitely (#31637) --- .github/workflows/release-push-to-channel.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-push-to-channel.yml b/.github/workflows/release-push-to-channel.yml index 42f126e3b15..528b57bf74e 100644 --- a/.github/workflows/release-push-to-channel.yml +++ b/.github/workflows/release-push-to-channel.yml @@ -167,7 +167,8 @@ jobs: name: Update latest and next in the docs runs-on: ubuntu-latest needs: [validate-inputs, release-to-npm, release-to-docker-hub] + timeout-minutes: 2 environment: release steps: - continue-on-error: true - run: curl -u docsWorkflows:${{ secrets.N8N_WEBHOOK_DOCS_PASSWORD }} --request GET 'https://internal.users.n8n.cloud/webhook/update-latest-next' + run: curl --connect-timeout 10 --max-time 30 -u docsWorkflows:${{ secrets.N8N_WEBHOOK_DOCS_PASSWORD }} --request GET 'https://internal.users.n8n.cloud/webhook/update-latest-next'