Closed
Stabilize pkgcheck by gating on commit-level CI completion#46
pkgcheck by gating on commit-level CI completion#46Conversation
Co-authored-by: maRce10 <13245502+maRce10@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job pkgcheck
Stabilize Aug 19, 2026
pkgcheck by gating on commit-level CI completion
maRce10
marked this pull request as ready for review
August 21, 2026 11:23
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.
pkgcheckwas intermittently failing onmainwithPackage fails continuous integration checksdespite passingR-CMD-checkand coverage runs for the same SHA. The failure was a timing issue:pkgcheckevaluated CI status before those workflows had completed.Root cause addressed: CI timing race on
mainpushespkgcheckcould run before commit-matchedR-CMD-check/ coverage workflows finished.Workflow change: add pre-check wait gate
.github/workflows/pkgcheck.yaml, added agithub-scriptstep beforeropensci-review-tools/pkgcheck-action@main.pushonrefs/heads/main.context.sha, filtered to workflow names matching/(cmd|coverage)/i.completed; fails early if any conclusion is non-success; times out after 15 minutes.Behavioral impact
pkgcheckfailures caused by workflow ordering.