diff options
| author | Natalia <124304+nessita@users.noreply.github.com> | 2025-11-25 22:18:50 -0300 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2025-11-26 08:03:38 -0500 |
| commit | 93fd01d641147d35768e129fcd0163f78e07807b (patch) | |
| tree | a0115f7689c85d83af6e307950e775cb491bd063 /.github/workflows/selenium.yml | |
| parent | bbbe64a262b214b08575f6ade8c0428df2f8377b (diff) | |
[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.
Diffstat (limited to '.github/workflows/selenium.yml')
| -rw-r--r-- | .github/workflows/selenium.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/selenium.yml b/.github/workflows/selenium.yml index 2e7e8f187d..e093515188 100644 --- a/.github/workflows/selenium.yml +++ b/.github/workflows/selenium.yml @@ -18,6 +18,7 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'selenium') runs-on: ubuntu-latest name: SQLite + timeout-minutes: 60 steps: - name: Checkout uses: actions/checkout@v4 @@ -43,6 +44,7 @@ jobs: if: contains(github.event.pull_request.labels.*.name, 'selenium') runs-on: ubuntu-latest name: PostgreSQL + timeout-minutes: 60 services: postgres: image: postgres:14-alpine |
