*: improve automated workflows - #31
Open
KaloyanTanev wants to merge 5 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
Improves the reliability and observability of the automated “rebase + tag” workflows by switching from output-grep heuristics to exit-code based success detection, adding a post-rebase verification step before tagging, and tightening what gets pushed.
Changes:
- Capture
git rebaseoutput once, use the exit code to set asuccessoutput, and abort failed rebases to leave a clean working tree for retries. - Add a
git range-diffverification gate to ensure*-oboltags are patch-identical to “upstream tag + obol changes” before tagging. - Push only the newly created tag ref instead of all tags.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/tag.yml | Adds exit-code based rebase handling, introduces range-diff verification gating for tagging, and pushes only the new tag ref. |
| .github/workflows/sync-rebase.yml | Switches rebase success detection to exit code, persists output cleanly, and gates push on a boolean success output. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
KaloyanTanev
force-pushed
the
kalo/improve-automated-workflows
branch
from
July 14, 2026 14:41
57c79e7 to
fa85f3c
Compare
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.
Some small QoL improvements over the workflows.