Skip to content

Commit ae592d0

Browse files
committed
add timeout
1 parent 6f29161 commit ae592d0

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

.github/workflows/claude.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
1919
(github.event_name == 'issues' && contains(github.event.issue.body, '@claude'))
2020
runs-on: ubuntu-latest
21+
timeout-minutes: 38
2122
permissions:
2223
contents: read
2324
pull-requests: read
@@ -35,7 +36,7 @@ jobs:
3536
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
3637
# Or use OAuth token instead:
3738
# claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
38-
timeout_minutes: "60"
39+
timeout_minutes: "30"
3940
# Optional: Restrict network access to specific domains only
4041
# experimental_allowed_domains: |
4142
# .anthropic.com

.github/workflows/lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ concurrency:
1717
jobs:
1818
lint:
1919
runs-on: ubuntu-latest
20+
timeout-minutes: 10
2021

2122
strategy:
2223
matrix:

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ permissions:
1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest
13+
timeout-minutes: 10
1314
steps:
1415
- uses: actions/checkout@v5
1516
- uses: oven-sh/setup-bun@v2

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ concurrency:
1515
jobs:
1616
test:
1717
runs-on: ubuntu-latest
18+
timeout-minutes: 10
1819

1920
strategy:
2021
matrix:

0 commit comments

Comments
 (0)