Skip to content

Commit

Permalink
Merge pull request #1230 from rsteube/gh-updates-from-2.14.0
Browse files Browse the repository at this point in the history
gh: updates from 2.14.0
  • Loading branch information
rsteube authored Jul 12, 2022
2 parents 5363983 + f3e8748 commit b6da805
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions completers/gh_completer/cmd/codespace_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ func init() {
codespace_listCmd.Flags().StringSlice("json", []string{}, "Output JSON with the specified `fields`")
codespace_listCmd.Flags().IntP("limit", "L", 30, "Maximum number of codespaces to list")
codespace_listCmd.Flags().StringP("org", "o", "", "The `login` handle of the organization to list codespaces for (admin-only)")
codespace_listCmd.Flags().StringP("repo", "r", "", "Repository name with owner: user/repo")
codespace_listCmd.Flags().StringP("template", "t", "", "Format JSON output using a Go template")
codespace_listCmd.Flags().StringP("user", "u", "", "The `username` to list codespaces for (used with --org)")
codespaceCmd.AddCommand(codespace_listCmd)
Expand All @@ -29,6 +30,7 @@ func init() {
return action.ActionCodespaceFields().Invoke(c).Filter(c.Parts).ToA()
}),
"org": gh.ActionOrganizations(gh.HostOpts{}),
"repo": gh.ActionOwnerRepositories(gh.HostOpts{}),
"user": gh.ActionUsers(gh.HostOpts{}),
})
}

0 comments on commit b6da805

Please sign in to comment.