From 7d7f27bc9881dede6337212db1e9ccdbd37addae 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: [4.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/check_commit_messages.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github/workflows/check_commit_messages.yml') diff --git a/.github/workflows/check_commit_messages.yml b/.github/workflows/check_commit_messages.yml index a4594d611c..16b67ea9a3 100644 --- a/.github/workflows/check_commit_messages.yml +++ b/.github/workflows/check_commit_messages.yml @@ -15,6 +15,7 @@ jobs: check-commit-prefix: if: startsWith(github.event.pull_request.base.ref, 'stable/') runs-on: ubuntu-latest + timeout-minutes: 60 steps: - uses: actions/checkout@v4 with: -- cgit v1.3