Skip to content

Commit 24e6c06

Browse files
authored
ci(actions): make estimate labels clearable in Monday (#14622)
**Related Issue:** #14621 ## Summary Adds the `clearable: true` prop to each design/dev estimate label map, allowing them to be cleared in Monday.com when they are removed from an issue.
1 parent 00a4d17 commit 24e6c06

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/scripts/support/monday.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,83 +395,95 @@ module.exports = function Monday(issue, core, updateIssueBody) {
395395
{
396396
column: mondayColumns.devEstimate,
397397
value: 1,
398+
clearable: true,
398399
},
399400
],
400401
[
401402
devEstimate.two,
402403
{
403404
column: mondayColumns.devEstimate,
404405
value: 2,
406+
clearable: true,
405407
},
406408
],
407409
[
408410
devEstimate.three,
409411
{
410412
column: mondayColumns.devEstimate,
411413
value: 3,
414+
clearable: true,
412415
},
413416
],
414417
[
415418
devEstimate.five,
416419
{
417420
column: mondayColumns.devEstimate,
418421
value: 5,
422+
clearable: true,
419423
},
420424
],
421425
[
422426
devEstimate.eight,
423427
{
424428
column: mondayColumns.devEstimate,
425429
value: 8,
430+
clearable: true,
426431
},
427432
],
428433
[
429434
devEstimate.thirteen,
430435
{
431436
column: mondayColumns.devEstimate,
432437
value: 13,
438+
clearable: true,
433439
},
434440
],
435441
[
436442
devEstimate.twentyOne,
437443
{
438444
column: mondayColumns.devEstimate,
439445
value: 21,
446+
clearable: true,
440447
},
441448
],
442449
[
443450
devEstimate.thirtyFour,
444451
{
445452
column: mondayColumns.devEstimate,
446453
value: 34,
454+
clearable: true,
447455
},
448456
],
449457
[
450458
designEstimate.two,
451459
{
452460
column: mondayColumns.designEstimate,
453461
value: 2,
462+
clearable: true,
454463
},
455464
],
456465
[
457466
designEstimate.five,
458467
{
459468
column: mondayColumns.designEstimate,
460469
value: 5,
470+
clearable: true,
461471
},
462472
],
463473
[
464474
designEstimate.thirteen,
465475
{
466476
column: mondayColumns.designEstimate,
467477
value: 13,
478+
clearable: true,
468479
},
469480
],
470481
[
471482
designEstimate.twentyOne,
472483
{
473484
column: mondayColumns.designEstimate,
474485
value: 21,
486+
clearable: true,
475487
},
476488
],
477489
[

0 commit comments

Comments
 (0)