-
Notifications
You must be signed in to change notification settings - Fork 405
/
Copy pathsync-bug-triage-github-project-beta.sh
executable file
·239 lines (201 loc) · 7.98 KB
/
sync-bug-triage-github-project-beta.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
#!/usr/bin/env bash
# Copyright 2022 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Usage: `sync-bug-triage-github-project-beta.sh`
# Pre-requisite: add a GITHUB_TOKEN as the environment variable (Ref: https://github.com/kubernetes/org/issues/3558)
set -eu -o pipefail
: "${ORGANIZATION:=kubernetes}"
: "${REPOSITORY:=kubernetes}"
PROJECT_NUMBER=${PROJECT_NUMBER:-}
MILESTONE=${MILESTONE:-}
if [ "${GITHUB_TOKEN:-}" == "" ]; then
echo "[Error] Required environment variable \"GITHUB_TOKEN\" is not set."
exit 1
fi
if [ "$PROJECT_NUMBER" == "" ]; then
echo "[Error] Required environment variable \"PROJECT_NUMBER\" is not set."
exit 1
fi
if [ "$MILESTONE" == "" ]; then
echo "[Error] Required environment variable \"MILESTONE\" is not set."
exit 1
fi
GITHUB_TOKEN="$(echo "$GITHUB_TOKEN" | tr -d '\n')"
milestone_issue_ids=()
milestone_pr_ids=()
## Function definitions
function get_field_ids_from_github_beta_project() {
if [ "$1" == "project-id" ]
then
query='.data.organization.projectV2.id'
elif [ "$1" == "type-id" ]
then
query='.data.organization.projectV2.fields.nodes[] | select(.name== "Type") | .id'
elif [ "$1" == "issue-id" ]
then
query='.data.organization.projectV2.fields.nodes[] | select(.name== "Type") | .options[] | select(.name== "Issue") | .id'
# for "pr-id"
else
query='.data.organization.projectV2.fields.nodes[] | select(.name== "Type") | .options[] | select(.name== "PR") | .id'
fi
ID="$( gh api graphql -f query='
query($org: String!, $number: Int!) {
organization(login: $org){
projectV2(number: $number) {
id
fields(first:100) {
nodes {
... on ProjectV2Field {
id
name
}
... on ProjectV2SingleSelectField {
id
name
options {
id
name
}
}
}
}
}
}
}' -f org="${ORGANIZATION}" -F number="${PROJECT_NUMBER}" --jq "$query")"
echo "$ID"
}
function add_items_to_github_beta_project {
gh api graphql -f query='
mutation (
$project: ID!
$item: ID!
$type_field: ID!
$option_id: String!
) {
set_issue_type: updateProjectV2ItemFieldValue(input: {
projectId: $project
itemId: $item
fieldId: $type_field
value: {
singleSelectOptionId: $option_id
}
}) {
projectV2Item {
id
}
}
}' -f project="${PROJECT_ID}" -f item="${1}" -f type_field="${TYPE_FIELD_ID}" -f option_id="${2}" --silent
}
echo 'Starting sync...'
echo -e "[INFO] Fetching the list of open issues and PRs from k/k under the current release milestone, ${MILESTONE}"
## Fetch issues
MILESTONE_ISSUES_JSON="$(gh api graphql --paginate -f query='
query($org: String!, $repo: String!, $milestone: String!, $endCursor: String){
repository(owner: $org, name: $repo) {
description
url
milestones(states: [OPEN],first:1, query: $milestone) {
nodes{
issues(states:[OPEN], first: 100, after: $endCursor){
nodes{
id
}
pageInfo{
hasNextPage
endCursor
}
}
}
}
}
}' -f org="${ORGANIZATION}" -f repo="${REPOSITORY}" -f milestone="${MILESTONE}")"
milestone_issues=($(jq ".data.repository.milestones.nodes[].issues.nodes | length" <<< "${MILESTONE_ISSUES_JSON}"))
for issues in "${milestone_issues[@]}"
do
for index in $(seq 0 $(( issues - 1 )));
do
issue_id=($(jq ".data.repository.milestones.nodes[].issues.nodes[$index].id" <<< "${MILESTONE_ISSUES_JSON}"))
milestone_issue_ids+=("${issue_id[@]}")
done
done
## Fetch PRs
MILESTONE_PRS_JSON="$(gh api graphql --paginate -f query='
query($org: String!, $repo: String!, $milestone: String!, $endCursor: String){
repository(owner: $org, name: $repo) {
description
url
milestones(states: [OPEN],first:1, query: $milestone) {
nodes{
pullRequests(states:[OPEN], first: 100, after: $endCursor){
nodes{
id
}
pageInfo{
hasNextPage
endCursor
}
}
}
}
}
}' -f org="${ORGANIZATION}" -f repo="${REPOSITORY}" -f milestone="${MILESTONE}")"
milestone_prs=($(jq ".data.repository.milestones.nodes[].pullRequests.nodes | length" <<< "${MILESTONE_PRS_JSON}"))
for prs in "${milestone_prs[@]}"
do
for index in $(seq 0 $(( prs - 1 )));
do
pr_id=($(jq ".data.repository.milestones.nodes[].pullRequests.nodes[$index].id" <<< "${MILESTONE_PRS_JSON}"))
milestone_pr_ids+=("${pr_id[@]}")
done
done
## Fetch Project metadata
echo -e "[INFO] Getting metadata for the Bug Triage GitHub Beta Project with ID: ${PROJECT_NUMBER}"
PROJECT_ID=$( get_field_ids_from_github_beta_project "project-id")
TYPE_FIELD_ID=$( get_field_ids_from_github_beta_project "type-id")
ISSUE_OPTION_ID=$( get_field_ids_from_github_beta_project "issue-id")
PR_OPTION_ID=$( get_field_ids_from_github_beta_project "pr-id")
## Add data to the Project Board
echo '[INFO] Feeding data from k/k issues into the GitHub Project Beta'
for issue_id in "${milestone_issue_ids[@]}";
do
# Issues
if [ "${issue_id}" != null ]; then
item_id="$( gh api graphql -f query='
mutation($project:ID!, $issue:ID!) {
addProjectV2ItemById(input: {projectId: $project, contentId: $issue}) {
item {
id
}
}
}' -f project="${PROJECT_ID}" -f issue="${issue_id}" --jq '.data.addProjectV2ItemById.item.id')"
add_items_to_github_beta_project "${item_id}" "${ISSUE_OPTION_ID}"
fi
done
echo '[INFO] Feeding data from k/k PRs into the GitHub Project Beta'
for pr_id in "${milestone_pr_ids[@]}";
do
# PRs
if [ "${pr_id}" != null ]; then
item_id="$( gh api graphql -f query='
mutation($project:ID!, $pr:ID!) {
addProjectV2ItemById(input: {projectId: $project, contentId: $pr}) {
item {
id
}
}
}' -f project="${PROJECT_ID}" -f pr="${pr_id}" --jq '.data.addProjectV2ItemById.item.id')"
add_items_to_github_beta_project "${item_id}" "${PR_OPTION_ID}"
fi
done
echo 'Sync finished!'