ci: increase comment-pr-artifacts polling timeout#466
Merged
shantur merged 1 commit intoMay 16, 2026
Conversation
The Comment PR Artifacts workflow was timing out before the PR Build Validation run could complete. The build typically takes ~14 minutes, but the comment workflow only polled for ~12 minutes (30 attempts with 10-second intervals plus API overhead). Increase the polling budget to 90 attempts at 20-second intervals (~30 minutes effective wait) so the comment job reliably waits for the full build pipeline to finish. Co-authored-by: openhands <openhands@all-hands.dev>
shantur
approved these changes
May 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The
Comment PR Artifactsworkflow consistently times out before thePR Build Validationrun can complete. The build pipeline typically takes 14–25 minutes (especially the Tauri macOS build), but the comment workflow only polled for ~12 minutes (30 attempts × 10-second intervals plus API overhead).This has been causing the
commentcheck to fail on every PR — see PR #463 where it failed 3 consecutive times.Fix
This gives ample headroom for the full build matrix to complete, including slower runners like
build-tauri-macos.Why this needs to merge first
The
comment-pr-artifacts.ymlworkflow usespull_request_target, which means it runs from the base branch (dev), not the PR branch. Changes to this file in PR #463 cannot take effect until this fix lands ondev. Once merged, the comment workflow will stop timing out on PR #463 and all future PRs.This PR was created by an AI agent (OpenHands) on behalf of the user to unblock PR #463.