Skip to content

Commit 7884a69

Browse files
committed
fix jira
1 parent e58d4d1 commit 7884a69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

update_jira/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const statusMap = {
1212
customFields: {
1313
// prod release timestamp
1414
customfield_11475: new Date(),
15-
customfield_11473: 'Production'
15+
customfield_11473: { name: 'Production' }
1616
}
1717
},
1818
'main': {
@@ -23,7 +23,7 @@ const statusMap = {
2323
customFields: {
2424
// prod release timestamp
2525
customfield_11475: new Date(),
26-
customfield_11473: 'Production'
26+
customfield_11473: { name: 'Production' }
2727
}
2828
},
2929
'staging': {
@@ -34,7 +34,7 @@ const statusMap = {
3434
customFields: {
3535
// staging release timestamp
3636
customfield_11474: new Date(),
37-
customfield_11473: 'Staging'
37+
customfield_11473: { name: 'Staging' }
3838
}
3939
},
4040
'dev': {

0 commit comments

Comments
 (0)