Skip to content

Commit 35858d1

Browse files
authored
chore: Add explicit timeout settings to workflows (#10475)
chore: set timeout settings to workflows
1 parent 445113c commit 35858d1

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
jobs:
1010
test:
1111
runs-on: ${{ matrix.os }}
12+
timeout-minutes: 30
1213
strategy:
1314
fail-fast: false
1415
matrix:

.github/workflows/lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
build:
1414
name: Lint
1515
runs-on: ubuntu-latest
16+
timeout-minutes: 30
1617
if: github.event.pull_request.draft == false
1718
steps:
1819
- name: Checkout

.github/workflows/nightly.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
publish-github-packages:
1212
if: github.ref == 'refs/heads/main'
1313
runs-on: ubuntu-latest
14+
timeout-minutes: 30
1415
permissions:
1516
packages: write
1617
steps:

.github/workflows/reports.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ permissions:
1515
jobs:
1616
report:
1717
runs-on: ubuntu-latest
18+
timeout-minutes: 30
1819
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure' }}
1920
steps:
2021
- name: Create Test Report

.github/workflows/snapshot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
jobs:
1212
snapshot:
1313
runs-on: ubuntu-latest
14+
timeout-minutes: 30
1415
environment: ci
1516
strategy:
1617
fail-fast: false

0 commit comments

Comments
 (0)