Remove [skip ci] from bot commit message in CD release#720
Merged
Conversation
The skip-ci token suppresses CI on the push-action/** temp branch that push-protected creates, so GitHub finds 0 status check runs and immediately tries to merge — which then fails with "7 of 7 required status checks are expected".
CasperWA
force-pushed
the
cwa/fix-skip-ci
branch
from
April 21, 2026 11:32
382a00e to
d1fde92
Compare
There was a problem hiding this comment.
Pull request overview
Updates the CD release workflow to ensure required CI checks run during protected-branch updates performed via CasperWA/push-protected, avoiding the “required status checks are expected” failure caused by skipping CI.
Changes:
- Remove
[skip ci]from the bot commit message in the CD release workflow.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #720 +/- ##
=======================================
Coverage 84.34% 84.34%
=======================================
Files 26 26
Lines 805 805
=======================================
Hits 679 679
Misses 126 126 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Summary
[skip ci]from the[bot] Update version and CHANGELOGcommit message incd_release.yml.Why
[skip ci]in a commit message suppresses all CI runs triggered by that push — including runs on thepush-action/**temp branch thatCasperWA/push-protectedcreates while waiting for status checks to pass. With no CI running on the temp branch,push-protectedfinds 0 status check runs, immediately declares them "all complete," then attempts to push tomaster— which GitHub rejects with "7 of 7 required status checks are expected".Removing
[skip ci]letsci_tests.ymlrun normally on thepush-action/**branch (it already has an explicitpush-action/**trigger for exactly this purpose), allowingpush-protectedto wait for and confirm all required checks before pushing.Test plan
Click to view squash commit message