We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ddb5ca commit 82c282cCopy full SHA for 82c282c
scripts/claude.mjs
@@ -3191,6 +3191,13 @@ Let's work through this together to get CI passing.`
3191
3192
log.substep(`Workflow "${run.name}" status: ${run.status}`)
3193
3194
+ // If workflow is queued, just wait for it to start
3195
+ if (run.status === 'queued' || run.status === 'waiting') {
3196
+ log.substep('Waiting for workflow to start...')
3197
+ await new Promise(resolve => setTimeout(resolve, 30_000))
3198
+ continue
3199
+ }
3200
+
3201
if (run.status === 'completed') {
3202
if (run.conclusion === 'success') {
3203
log.done('CI workflow passed! 🎉')
0 commit comments