-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathget-sub-issues-of-issue.sh
executable file
·81 lines (70 loc) · 2.06 KB
/
get-sub-issues-of-issue.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/bash
# Gets a list of sub-issues from 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"
exit 1
fi
org="$1"
repo="$2"
issue_number="$3"
# Define color codes
RED='\033[0;31m'
YELLOW='\033[0;33m'
NC='\033[0m' # No Color
# Fetch the issue ID given the issue number
issue_id=$(gh api graphql -f owner="$org" -f repository="$repo" -F number="$issue_number" -f query='
query ($owner: String!, $repository: String!, $number: Int!) {
repository(owner: $owner, name: $repository) {
issue(number: $number) {
id
}
}
}' --jq '.data.repository.issue.id')
# Check if the query was successful
if [ $? -ne 0 ]; then
echo -e "${RED}Issue #$issue_number not found in $org/$repo${NC}"
exit 1
fi
# Get the sub-issues for the issue
sub_issues=$(gh api graphql --paginate -H GraphQL-Features:sub_issues -H GraphQL-Features:issue_types -f issueId="$issue_id" -f query='
query($issueId: ID!, $endCursor: String) {
node(id: $issueId) {
... on Issue {
subIssues(first: 100, after: $endCursor) {
totalCount
nodes {
title
number
url
id
issueType {
name
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
}')
# Check if the gh api graphql command was successful
if [ $? -ne 0 ]; then
echo -e "${RED}Failed to get sub-issues for $org/$repo#$issue_number.${NC}"
exit 1
fi
# Combine the results using jq
combined_result=$(echo "$sub_issues" | jq -s '
{
totalCount: .[0].data.node.subIssues.totalCount,
issues: (map(.data.node.subIssues.nodes) | add | map(.issueType = .issueType.name))
}')
# Print the combined result as a colorized JSON object
echo "$combined_result" | jq .
# Check if total is 0 and print a warning
total=$(echo "$combined_result" | jq -r '.totalCount')
if [ "$total" -eq 0 ]; then
echo -e "${YELLOW}Warning: The total number of sub-issues for $org/$repo#$issue_number is 0.${NC}"
fi