-
Notifications
You must be signed in to change notification settings - Fork 170
test: md-only PR to verify ci-complete gate #1285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| # CI Gate Verification | ||
|
|
||
| Test file to verify md-only PRs skip the test suite and pass ci-complete. | ||
| Delete after verification. | ||
|
Comment on lines
+1
to
+4
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Temporary file not deleted after verification The file itself says "Delete after verification." Since this PR also changes If this file is being kept as a persistent example or documentation, the "Delete after verification" note should be removed. Otherwise, this file should be removed before merge. |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ci-completedoes not catchcheck-changesfailuresci-complete'sneedslist does not includecheck-changesdirectly. Ifcheck-changesfails, all downstream jobs that don't useif: always()(e.g.ros,python) are automatically skipped by GitHub Actions — they won't appear asfailureinneeds.*.result. As a result, acheck-changesfailure would causeci-completeto pass (nofailureorcancelledin its direct dependencies), silently swallowing the infrastructure failure.Consider adding
check-changestoci-complete'sneedslist:This is a pre-existing gap, but the expansion of
ci-complete'sneedsin this PR is a good opportunity to close it.