Skip to content

Commit cc97f44

Browse files
authored
Double daily code review agent run timeout (#170)
1 parent 29455dd commit cc97f44

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/daily-code-review.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
daily-code-review:
1717
runs-on: ubuntu-latest
18-
timeout-minutes: 30
18+
timeout-minutes: 60
1919

2020
env:
2121
NODE_VER: "22"
@@ -178,7 +178,7 @@ jobs:
178178
# The GITHUB_TOKEN is repo-scoped and branch protections prevent direct pushes
179179
# to main. The agent can only create PRs, not merge them.
180180
EXIT_CODE=0
181-
timeout --foreground --signal=TERM --kill-after=30s 1200s \
181+
timeout --foreground --signal=TERM --kill-after=30s 2400s \
182182
copilot \
183183
--prompt "$FULL_PROMPT" \
184184
--model "claude-opus-4.6" \
@@ -187,7 +187,7 @@ jobs:
187187
< /dev/null 2>&1 || EXIT_CODE=$?
188188
189189
if [ $EXIT_CODE -eq 124 ]; then
190-
echo "::warning::Agent timed out after 20 minutes"
190+
echo "::warning::Agent timed out after 40 minutes"
191191
elif [ $EXIT_CODE -ne 0 ]; then
192192
echo "::warning::Agent exited with code $EXIT_CODE"
193193
fi

0 commit comments

Comments
 (0)