diff --git a/extensions/github/CHANGELOG.md b/extensions/github/CHANGELOG.md
index d9e9eea0ba3..e256d397c99 100644
--- a/extensions/github/CHANGELOG.md
+++ b/extensions/github/CHANGELOG.md
@@ -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.
diff --git a/extensions/github/src/components/RepositoryActions.tsx b/extensions/github/src/components/RepositoryActions.tsx
index 15c92d585be..819bd981533 100644
--- a/extensions/github/src/components/RepositoryActions.tsx
+++ b/extensions/github/src/components/RepositoryActions.tsx
@@ -145,6 +145,13 @@ export default function RepositoryActions
+ onVisit(repository)}
+ shortcut={{ modifiers: ["cmd", "shift"], key: "g" }}
+ />
{repository.viewerHasStarred ? (