feat(kiloclaw) openclaw bump notify#3779
Merged
Merged
Conversation
Contributor
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Executive SummaryThe workflow change correctly removes Files Reviewed (1 file)
Reviewed by claude-sonnet-4.6 · 279,614 tokens Review guidance: REVIEW.md from base branch |
pandemicsyn
approved these changes
Jun 5, 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.
Summary
The release check workflow used to post a Slack message the moment a new OpenClaw
release was detected. That message fired in parallel with the bump agent, so it could
not include the resulting PR link or any assessment of the upgrade, and it rendered a
link preview card. This change removes that early Slack step. The Slack notification is
now sent by the cloud agent after it opens the bump PR, so it can include the PR link
and a scored upgrade assessment. The trigger webhook also passes the current version so
the agent can report the version range.
Changes
Notify Slackstep from.github/workflows/bump-openclaw.yml. The cloudagent that handles the bump now posts the Slack notification itself after opening the PR.
current_openclaw_versionto the webhook payload alongsidenew_openclaw_version,so the agent has both versions without extra git work.
continue-on-error: truefrom the webhook step. With the early Slack ping gone,a failed trigger now fails the run instead of being swallowed silently.
agent.
Verification
opened or updated the bump PR and sent the new Slack message with the version range, the
scored assessment, and links as buttons with no preview card.
is config only, and CI lint covers the YAML.
Visual Changes
N/A. No application UI changes. The Slack message layout itself is produced by the cloud
agent, not by this workflow file.