Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# GitHub Changelog

## [Clone repositories in GitHub Desktop] - {PR_MERGE_DATE}

- Added a "Clone in GitHub Desktop" action to repository actions, with a `Cmd+Shift+G` shortcut.

## [Show CI status in pull request details] - 2026-08-10

- Added a "Checks" row to pull request details showing successful, failed, or pending CI status.
Expand Down
7 changes: 7 additions & 0 deletions extensions/github/src/components/RepositoryActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,13 @@ export default function RepositoryActions<T = ExtendedRepositoryFieldsFragment[]
url={`vscode://vscode.git/clone?url=${repository.url}`}
shortcut={{ modifiers: ["cmd", "shift"], key: "c" }}
/>
<Action.OpenInBrowser
icon={{ source: "github.svg", tintColor: Color.PrimaryText }}
title="Clone in GitHub Desktop"
url={`x-github-client://openRepo/${repository.url}`}
onOpen={() => onVisit(repository)}
shortcut={{ modifiers: ["cmd", "shift"], key: "g" }}
/>
Comment on lines +148 to +154

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Preserve existing action ordering

Inserting this action before the existing star toggle shifts that action and all following entries from their established positions, disrupting position-based navigation and muscle memory. Append the new action after the existing actions to preserve their order.

Rule Used: What: New action panel actions should be appended ... (source)

Prompt To Fix With AI
This is a comment left during a code review.
Path: extensions/github/src/components/RepositoryActions.tsx
Line: 148-154

Comment:
**Preserve existing action ordering**

Inserting this action before the existing star toggle shifts that action and all following entries from their established positions, disrupting position-based navigation and muscle memory. Append the new action after the existing actions to preserve their order.

**Rule Used:** What: New action panel actions should be appended ... ([source](https://app.greptile.com/raycast/-/custom-context?memory=cde63d3f-214c-4294-9a2a-bb8323ef7d33))

---

For each issue above, determine whether it is valid and should be fixed. If so, fix it directly.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!


{repository.viewerHasStarred ? (
<Action
Expand Down
Loading