Skip to content

Commit 05af642

Browse files
committed
fix(workflow): correct Bash tool timeout to 10 minutes in upgrade-deps prompt
The Bash tool's maximum per-call timeout is 10 minutes (600000 ms), not 20 minutes as the previous wording stated.
1 parent 65e709c commit 05af642

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/upgrade-deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
### Running long commands (IMPORTANT)
116116
Run every long-running command (`just build`, `pnpm bootstrap-cli:ci`,
117117
`pnpm test`, `cargo check`, etc.) in the FOREGROUND — a single Bash tool call
118-
that blocks until the command exits. The Bash tool already gives you a 20-minute
118+
that blocks until the command exits. The Bash tool already gives you a 10-minute
119119
timeout per call, which is enough for these builds.
120120
121121
Do NOT do any of the following:
@@ -127,7 +127,7 @@ jobs:
127127
whether a build succeeded, just run it in the foreground and read its exit
128128
code and stdout/stderr in the single tool result.
129129
130-
If a foreground command legitimately hits the 20-minute Bash timeout, report
130+
If a foreground command legitimately hits the 10-minute Bash timeout, report
131131
that and stop — do not start polling.
132132
133133
### Commit rule

0 commit comments

Comments
 (0)