From 93fd01d641147d35768e129fcd0163f78e07807b Mon Sep 17 00:00:00 2001 From: Natalia <124304+nessita@users.noreply.github.com> Date: Tue, 25 Nov 2025 22:18:50 -0300 Subject: [5.2.x] Added timeout-minutes directive to all GitHub Actions workflows. GitHub Actions defaults to a 360-minute (6-hour) timeout. We've had jobs hang due to issues in the parallel test runner, causing them to run for the full 6 hours. This wastes resources and negatively impacts CI availability, so explicit timeouts have been added to prevent long-running hangs. Backport of e48527f91d341c85a652499a5baaf725d36ae54f from main. --- .github/workflows/docs.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.github/workflows/docs.yml') diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index eeef40c462..a21f9398bc 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -23,6 +23,7 @@ jobs: docs: runs-on: ubuntu-24.04 name: docs + timeout-minutes: 60 steps: - name: Checkout uses: actions/checkout@v4 @@ -43,6 +44,7 @@ jobs: blacken-docs: runs-on: ubuntu-latest name: blacken-docs + timeout-minutes: 60 steps: - name: Checkout uses: actions/checkout@v4 -- cgit v1.3