Skip to content
Merged
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
8 changes: 4 additions & 4 deletions gh-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1096,14 +1096,14 @@ Retrieves all SSO enabled PATs users have created for an organization.

Retrieves all SSO-enabled SSH keys users have created for an organization.

### get-sub-issue-summary-of-issue.sh

Gets a summary of the sub-issues (children) of an issue (parent). See: [Community Discussions Post](https://github.com/orgs/community/discussions/139932)

### get-sub-issues-of-issue.sh

Gets the sub-issues (children) of an issue (parent). See: [Community Discussions Post](https://github.com/orgs/community/discussions/139932)

### get-sub-issues-summary-of-issue.sh

Gets a summary of the sub-issues (children) of an issue (parent). See: [Community Discussions Post](https://github.com/orgs/community/discussions/139932)

### get-user-id.sh

Retrieves the ID of a user for other GraphQL calls
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash

# Gets the sub-issue summary of an issue
# Gets the sub-issues summary of an issue

if [ -z "$3" ]; then
echo "Usage: $0 <org> <repo> <issue-number>"
echo "Example: ./get-sub-issues-of-issue.sh joshjohanning-org migrating-ado-to-gh-issues-v2 5"
echo "Example: ./get-sub-issues-summary-of-issue.sh joshjohanning-org migrating-ado-to-gh-issues-v2 5"
exit 1
fi

Expand Down