Skip to content

Commit 2bb21ea

Browse files
committed
CI: Add timeouts
1 parent 982783d commit 2bb21ea

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.github/workflows/build_offline_docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
# Manual runs can still be triggered as normal.
1313
if: ${{ github.repository_owner == 'godotengine' || github.event_name != 'schedule' || vars.CI_OFFLINE_DOCS_CRON == 'true' }}
1414
runs-on: ubuntu-24.04
15+
timeout-minutes: 180
1516
strategy:
1617
matrix:
1718
branch:

.github/workflows/cherrypick.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
# The cherrypick label is hardcoded because `contains()` doesn't seem to be able to use an environment variable as a second argument.
2020
if: ${{ github.event.pull_request.merged == true && contains( github.event.pull_request.labels.*.name, 'cherrypick:4.3' ) }}
2121
runs-on: ubuntu-24.04
22+
timeout-minutes: 10
2223
env:
2324
# "Ternary" hack featured in the official docs.
2425
# When using "Squash and merge", the commit hash is the last merge commit of the pull request merge branch.

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ concurrency:
1111
jobs:
1212
build:
1313
runs-on: ubuntu-24.04
14+
timeout-minutes: 120
1415
steps:
1516
- name: Checkout
1617
uses: actions/checkout@v4

.github/workflows/sync_class_ref.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
if: ${{ github.repository_owner == 'godotengine' || github.event_name != 'schedule' || vars.CI_SYNC_CLASS_REF_CRON == 'true' }}
2222
name: Update class reference files based on the engine revision
2323
runs-on: ubuntu-24.04
24+
timeout-minutes: 10
2425
env:
2526
engine_rev: 'master'
2627
permissions:

0 commit comments

Comments
 (0)