···520520 case .archiveWorktree:
521521 base = "Archive \(row.title)"
522522 case .openPullRequest:
523523- base = "Open pull request on GitHub"
523523+ base = "Open on Code Host"
524524 case .markPullRequestReady:
525525 base = "Mark pull request ready for review"
526526 case .mergePullRequest:
···332332 }
333333334334 enum PullRequestAction: Equatable {
335335- case openOnGithub
335335+ case openOnCodeHost
336336 case markReadyForReview
337337 case merge
338338 case close
···355355 @Dependency(GitClientDependency.self) var gitClient
356356 @Dependency(GithubCLIClient.self) var githubCLI
357357 @Dependency(GithubIntegrationClient.self) var githubIntegration
358358+ @Dependency(OpenURLClient.self) var openURLClient
358359 @Dependency(RepositoryPersistenceClient.self) var repositoryPersistence
359360 @Dependency(ShellClient.self) var shellClient
360361 @Dependency(\.date.now) var now