From 1d6f490c77317bd60227407b84296f19ab727567 Mon Sep 17 00:00:00 2001 From: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Date: Tue, 30 Sep 2025 16:41:00 +0000 Subject: [PATCH] 5min timeout --- .github/workflows/shift.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/shift.yaml b/.github/workflows/shift.yaml index 25ab7aa3a..15eab658a 100644 --- a/.github/workflows/shift.yaml +++ b/.github/workflows/shift.yaml @@ -8,10 +8,12 @@ on: jobs: shift: runs-on: ubuntu-latest + timeout-minutes: 5 steps: - name: Shift run: | - curl -sf -X POST https://laravelshift.com/api/run \ + curl -X POST -s -retry 5 -m 60 --fail-with-body \ + https://laravelshift.com/api/run \ -H "Accept: application/json" \ -d "api_token=${{ secrets.SHIFT_TOKEN }}" \ -d "code=${{ secrets.SHIFT_CODE }}" \