[DRAFT] fix: add validation gate and misleading check status in PR workflows#2013
Draft
jkim323 wants to merge 5 commits into
Draft
[DRAFT] fix: add validation gate and misleading check status in PR workflows#2013jkim323 wants to merge 5 commits into
jkim323 wants to merge 5 commits into
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2013 +/- ##
==========================================
- Coverage 80.82% 80.81% -0.01%
==========================================
Files 117 117
Lines 19095 19095
==========================================
- Hits 15433 15432 -1
- Misses 3662 3663 +1
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
bindsi
approved these changes
Jun 16, 2026
bindsi
left a comment
Member
There was a problem hiding this comment.
Approved: the workflow validation aggregation changes are scoped and consistent with the existing PR workflow patterns. I did not find actionable correctness or generated-status issues.
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.
Pull Request
Description
Problem:
continue-on-error: trueon lint and check steps, which caused GitHub to report every individual job as green (passed) even when the underlying tool actually failed. This made the PR Checks tab misleading — reviewers could not tell at a glance whether validation truly passed or silently swallowed failures.Changes made:
continue-on-errorfrom reusable workflowscontinue-on-error: truewith explicit failure-state capture and exit 0pr-validation.yml:check_result()function accepts optionalsoft_failandhas_warningsparameters:markdown-link-check.ymlexposes ahas-warningsoutput so the gate can distinguish "clean pass" from "passed with warnings." To add soft-fail awareness for other workflows, add ahas-warningsoutput and pass the third/fourth args in the gate.Related Issue(s)
Fixes #1940
Type of Change
Select all that apply:
Code & Documentation:
Infrastructure & Configuration:
AI Artifacts:
prompt-builderagent and addressed all feedback.github/instructions/*.instructions.md).github/prompts/*.prompt.md).github/agents/*.agent.md).github/skills/*/SKILL.md)Other:
.ps1,.sh,.py)Sample Prompts (for AI Artifact Contributions)
User Request:
Execution Flow:
Output Artifacts:
Success Indicators:
For detailed contribution requirements, see:
Testing
Checklist
Required Checks
AI Artifact Contributions
/prompt-analyzeto review contributionprompt-builderreviewRequired Automated Checks
The following validation commands must pass before merging:
npm run lint:mdnpm run spell-checknpm run lint:frontmatternpm run validate:skillsnpm run lint:md-linksnpm run lint:psnpm run plugin:generatenpm run docs:testSecurity Considerations
Additional Notes
spell-check.ymlexited with the original error code despite continue-on-error, creating redundant failure signals.