Skip to content

Commit 0bc5659

Browse files
committed
chore: set timeout settings to workflows
1 parent 445113c commit 0bc5659

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

.github/workflows/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ permissions:
88
jobs:
99
auto-merge:
1010
runs-on: ubuntu-latest
11+
timeout-minutes: 30
1112
if: ${{ github.actor == 'dependabot[bot]' }}
1213
steps:
1314
- run: gh pr review --approve "$PR_URL"

.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/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
jobs:
77
build:
88
runs-on: ubuntu-latest
9+
timeout-minutes: 30
910
steps:
1011
- uses: actions/checkout@v4
1112

.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)