feat: show workspace context status by default, allow rename.#130
Merged
knightedcodemonkey merged 2 commits intomainfrom May 3, 2026
Merged
feat: show workspace context status by default, allow rename.#130knightedcodemonkey merged 2 commits intomainfrom
knightedcodemonkey merged 2 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR makes the workspace context status row always present in the main grid (instead of being gated behind PAT connection) and adds a rename action for local stored workspaces via the Workspaces drawer.
Changes:
- Always render the workspace context status row in the app layout and show it by default.
- Add a “Rename” button to the Workspaces drawer, wiring it through the GitHub workflows to update stored local workspace metadata.
- Simplify workspace option labels (remove the
local:prefix) and update Playwright expectations accordingly.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| src/styles/layout-shell.css | Makes the workspace context row a permanent part of the app grid layout. |
| src/index.html | Shows the workspace context status element by default; adds the Workspaces “Rename” button. |
| src/modules/app-core/workspace-context-status-controller.js | Updates status rendering logic to always show the status node and adjust repository display behavior. |
| src/modules/workspace/workspaces-drawer/drawer.js | Adds rename button handling + updates option label formatting. |
| src/modules/app-core/github-workflows.js | Implements the local workspace rename flow (currently via window.prompt). |
| src/app.js | Wires rename button + passes persisted workspace metadata to status controller. |
| playwright/github-pr-drawer/open-pr-create.spec.ts | Updates label assertions after removing local: prefix. |
| playwright/github-byot-ai.spec.ts | Updates status visibility test and adds a rename flow test using prompt dialog handling. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
window.promptas a first pass.