forked from fmvilas/shapeup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flag-issues-as-scopes.yml
424 lines (413 loc) · 19.9 KB
/
flag-issues-as-scopes.yml
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
name: Flag issues as scopes
on:
issues:
types:
- edited
workflow_dispatch: {}
env:
PROJECT_NUMBER: 4
jobs:
flag-issues-as-scopes:
runs-on: ubuntu-latest
permissions:
repository-projects: write
steps:
# - name: View context attributes
# uses: actions/github-script@v6
# with:
# script: console.log(context)
- name: Get the issue project informations
id: project-info
uses: actions/github-script@v6
with:
github-token: ${{ secrets.ACCESS_TOKEN }}
result-encoding: json
script: |
const query = `query($owner: String!, $name: String!, $issue: Int!) {
user(login: $owner) {
repository(name: $name) {
projectsV2(first:1) {
nodes {
id
number
fields(first:100) {
nodes {
...on ProjectV2Field{
id
name
}
...on ProjectV2SingleSelectField{
id
name
options {
id
name
}
}
...on ProjectV2IterationField {
id
name
configuration {
iterations {
id
title
}
}
}
}
}
items(first: 100) {
nodes {
id
content {
...on Issue {
id
title
number
}
}
fieldValues(first:100) {
nodes {
...on ProjectV2ItemFieldSingleSelectValue {
field {
...on ProjectV2Field {
id
name
}
}
id
name
}
...on ProjectV2ItemFieldTextValue {
field {
...on ProjectV2Field {
name
}
}
id
text
}
...on ProjectV2ItemFieldIterationValue {
field {
...on ProjectV2IterationField {
name
}
}
iterationId
title
startDate
duration
}
}
}
}
}
}
}
issue(number: $issue) {
title
id
number
trackedIssues(first:100) {
nodes {
id
number
title
projectsV2(first:1) {
nodes {
id
}
}
}
}
}
}
}
}`;
const variables = {
owner: context.repo.owner,
name: context.repo.repo,
issue: context.payload.issue.number
}
const result = await github.graphql(query, variables)
console.log(JSON.stringify(result))
return result
- name: Add tracked tasks to projet
id: extract-tasks
uses: actions/github-script@v6
with:
github-token: ${{ secrets.ACCESS_TOKEN }}
script: |
const issue = context.payload.issue;
const changes = context.payload.changes;
const issueData = ${{ steps.project-info.outputs.result }}
const project = issueData.user.repository.projectsV2.nodes.length > 0 ? issueData.user.repository.projectsV2.nodes[0] : null
const issueNumber = issue.number;
const kind = 'kind/bet';
const betFieldId = issueData.user.repository.projectsV2.nodes[0].fields.nodes.filter(f => f.name === "Bet")[0].id
const kindFieldId = issueData.user.repository.projectsV2.nodes[0].fields.nodes.filter(f => f.name === "Kind")[0].id
const scopeFieldOption = issueData.user.repository.projectsV2.nodes[0].fields.nodes.filter(f => f.name === "Kind")[0].options.filter(o => o.name === "Scope")[0].id
const isIssueKindBet = issue.labels.some(label => label.name === kind);
const trackedTasks = issueData.user.repository.issue.trackedIssues.nodes;
const betURL = `https://github.com/Amzani/shapeup/issues/${issueNumber}`;
const cycleFieldId = issueData.user.repository.projectsV2.nodes[0].fields.nodes.filter(f => f.name === "Cycle")[0].id
const cycleIterationId = issueData.user.repository.projectsV2.nodes[0].items.nodes.filter(i => i.content.id === issue.node_id)[0]?.fieldValues.nodes.filter(f => f.field?.name === "Cycle")[0]?.iterationId;
const addIssueToProject = async (issueNumber, projectId) => {
const addToProjectMutation = `mutation {
addProjectV2ItemById(input: {projectId: "${projectId}", contentId: "${issueNumber}"}) {
clientMutationId
}
}`;
const variables = {
owner: context.repo.owner,
name: context.repo.repo
};
try {
await github.graphql(addToProjectMutation, variables);
console.log(`Added issue #${issueNumber} to project ${projectId}.`);
} catch (error) {
console.log(`Failed to add issue #${issueNumber} to project ${projectId}:`, error);
}
};
const updateProjectFieldValue = async (projectId, itemId, fieldId, value) => {
const updateProjectMutation = `mutation ($input: UpdateProjectV2ItemFieldValueInput!) {
updateProjectV2ItemFieldValue(input: $input) {
clientMutationId
}
}`;
const variables = {
input : {
projectId: projectId,
itemId: itemId,
fieldId: fieldId,
value: value
}
};
try {
await github.graphql(updateProjectMutation, variables);
} catch (error) {
console.log(`Failed mutation for issue #${issueNumber}`, error);
}
};
if (isIssueKindBet) {
const oldDescription = changes.body ? changes.body.from : '';
const newDescription = issue.body;
if (!project) {
console.log("This issue have not a project assigned")
return;
}
if (oldDescription !== newDescription) {
for (const scope of trackedTasks) {
let projectScopes = scope.projectsV2.nodes.map((p) => p.id)
let itemId = issueData.user.repository.projectsV2.nodes[0].items.nodes.filter(n => n.content.id === scope.id)[0]?.id
if (!projectScopes.includes(project.id)) {
await addIssueToProject(scope.id, project.id)
console.log(`Added issue #${scope.number} to project ${project.id}.`);
}
}
}
}
- name: Get updated project infos
id: project-info-update
uses: actions/github-script@v6
with:
github-token: ${{ secrets.ACCESS_TOKEN }}
result-encoding: json
script: |
const query = `query($owner: String!, $name: String!, $issue: Int!) {
user(login: $owner) {
repository(name: $name) {
projectsV2(first:1) {
nodes {
id
number
fields(first:100) {
nodes {
...on ProjectV2Field{
id
name
}
...on ProjectV2SingleSelectField{
id
name
options {
id
name
}
}
...on ProjectV2IterationField {
id
name
configuration {
iterations {
id
title
}
}
}
}
}
items(first: 100) {
nodes {
id
content {
...on Issue {
id
title
number
}
}
fieldValues(first:100) {
nodes {
...on ProjectV2ItemFieldSingleSelectValue {
field {
...on ProjectV2Field {
id
name
}
}
id
name
}
...on ProjectV2ItemFieldTextValue {
field {
...on ProjectV2Field {
name
}
}
id
text
}
...on ProjectV2ItemFieldIterationValue {
field {
...on ProjectV2IterationField {
name
}
}
iterationId
title
startDate
duration
}
}
}
}
}
}
}
issue(number: $issue) {
title
id
number
trackedIssues(first:100) {
nodes {
id
number
title
projectsV2(first:1) {
nodes {
id
}
}
}
}
}
}
}
}`;
const variables = {
owner: context.repo.owner,
name: context.repo.repo,
issue: context.payload.issue.number
}
const result = await github.graphql(query, variables)
console.log(JSON.stringify(result))
return result
- name: Update missing fields
id: update-missing-fields
uses: actions/github-script@v6
with:
github-token: ${{ secrets.ACCESS_TOKEN }}
script: |
const issue = context.payload.issue;
const changes = context.payload.changes;
const issueData = ${{ steps.project-info-update.outputs.result }}
const project = issueData.user.repository.projectsV2.nodes.length > 0 ? issueData.user.repository.projectsV2.nodes[0] : null
const issueNumber = issue.number;
const kind = 'kind/bet';
const betFieldId = issueData.user.repository.projectsV2.nodes[0].fields.nodes.filter(f => f.name === "Bet")[0].id
const kindFieldId = issueData.user.repository.projectsV2.nodes[0].fields.nodes.filter(f => f.name === "Kind")[0].id
const scopeFieldOption = issueData.user.repository.projectsV2.nodes[0].fields.nodes.filter(f => f.name === "Kind")[0].options.filter(o => o.name === "Scope")[0].id
const isIssueKindBet = issue.labels.some(label => label.name === kind);
const trackedTasks = issueData.user.repository.issue.trackedIssues.nodes;
const betURL = `https://github.com/Amzani/shapeup/issues/${issueNumber}`;
const cycleFieldId = issueData.user.repository.projectsV2.nodes[0].fields.nodes.filter(f => f.name === "Cycle")[0].id
const cycleIterationId = issueData.user.repository.projectsV2.nodes[0].items.nodes.filter(i => i.content.id === issue.node_id)[0]?.fieldValues.nodes.filter(f => f.field?.name === "Cycle")[0]?.iterationId;
const addIssueToProject = async (issueNumber, projectId) => {
const addToProjectMutation = `mutation {
addProjectV2ItemById(input: {projectId: "${projectId}", contentId: "${issueNumber}"}) {
clientMutationId
}
}`;
const variables = {
owner: context.repo.owner,
name: context.repo.repo
};
try {
await github.graphql(addToProjectMutation, variables);
console.log(`Added issue #${issueNumber} to project ${projectId}.`);
} catch (error) {
console.log(`Failed to add issue #${issueNumber} to project ${projectId}:`, error);
}
};
const updateProjectFieldValue = async (projectId, itemId, fieldId, value) => {
const updateProjectMutation = `mutation ($input: UpdateProjectV2ItemFieldValueInput!) {
updateProjectV2ItemFieldValue(input: $input) {
clientMutationId
}
}`;
const variables = {
input : {
projectId: projectId,
itemId: itemId,
fieldId: fieldId,
value: value
}
};
try {
await github.graphql(updateProjectMutation, variables);
} catch (error) {
console.log(`Failed mutation for issue #${issueNumber}`, error);
}
};
if (isIssueKindBet) {
const oldDescription = changes.body ? changes.body.from : '';
const newDescription = issue.body;
if (!project) {
console.log("This issue have not a project assigned")
return;
}
if (oldDescription !== newDescription) {
for (const scope of trackedTasks) {
let projectScopes = scope.projectsV2.nodes.map((p) => p.id)
let itemId = issueData.user.repository.projectsV2.nodes[0].items.nodes.filter(n => n.content.id === scope.id)[0]?.id
if (!projectScopes.includes(project.id)) {
await addIssueToProject(scope.id, project.id)
console.log(`Added issue #${scope.number} to project ${project.id}.`);
}
if (scope.id && itemId && betFieldId) {
await updateProjectFieldValue(project.id, itemId, betFieldId, {"text": betURL});
console.log(`Added betURL to issue #${scope.number}`);
}
if (scope.id && itemId && kindFieldId && scopeFieldOption) {
await updateProjectFieldValue(project.id, itemId, kindFieldId, {"singleSelectOptionId": scopeFieldOption});
console.log(`Added kind=scope to issue #${scope.number}`);
}
if (scope.id && itemId && cycleFieldId && cycleIterationId) {
await updateProjectFieldValue(project.id, itemId, cycleFieldId, {"iterationId": cycleIterationId});
console.log(`Added the same cycle as #${issue.number} to issue #${scope.number}`);
}
console.log(`scopeId`, scope.id, `itemId`, itemId, `betFieldId`, betFieldId)
}
}
}