feat: map git rebase and cherry-pick to dedicated status titles#37
Merged
Conversation
git rebase → 🔀 Rebasing (priority 75) git cherry-pick → 🍒 Cherry-picking (priority 75) Previously both fell through to 🖥️ Running. These are merge-adjacent operations and deserve their own status indicators. Closes #13
There was a problem hiding this comment.
Pull request overview
Maps git rebase and git cherry-pick Bash commands to dedicated status titles so the monitor/title system reflects these operations (similar to existing git merge handling), improving visibility during common refactor workflows.
Changes:
- Add
🔀 Rebasingand🍒 Cherry-pickingstatus classification inlib/hook_runner.shfor Bash pre-tool commands. - Assign both statuses priority 75 in
lib/monitor.shand include them in the known-status validation set. - Extend docs and tests to cover the new statuses and priority mappings.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
lib/hook_runner.sh |
Detect git rebase / git cherry-pick and set dedicated statuses instead of falling back to Running. |
lib/monitor.sh |
Map new statuses to priority 75 and allow them in the known-status validation list. |
tests/test-suite.sh |
Add unit tests for both status_to_priority() and pre-tool Bash classification for rebase/cherry-pick. |
docs/dynamic-titles.md |
Document the new Bash-to-status mappings. |
README.md |
Update the status reference table with Rebasing and Cherry-picking entries. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
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
git rebaseto🔀 Rebasingstatus (priority 75) instead of falling through to🖥️ Runninggit cherry-pickto🍒 Cherry-pickingstatus (priority 75) instead of falling through to🖥️ Runningstatus_to_priority()in monitor.sh, the known-status validation set, and the status reference docsTest plan
git rebase main,git rebase --continue,git cherry-pick abc123,git cherry-pick --abortstatus_to_prioritytests: Rebasing and Cherry-picking both resolve to 75Closes #13