Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
Signed-off-by: Darin Pope <[email protected]>
  • Loading branch information
darinpope committed Nov 1, 2021
1 parent c0e248e commit 9283d0b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions vars/jiraProcessChangeLogItems.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ def call(Map config=[:]) {
component: component,
version: fixVersion
]
println m.inspect()
def json = new groovy.json.JsonBuilder()
json rootKey: m
println json.toString()
//publishEvent(jsonEvent('{"foo":"bar"}'))
break;
case {it == ["Selected for Development","In Progress"]}:
Expand All @@ -27,7 +29,9 @@ def call(Map config=[:]) {
component: component,
version: fixVersion
]
println m.inspect()
def json = new groovy.json.JsonBuilder()
json rootKey: m
println json.toString()
//publishEvent(jsonEvent('{"foo":"bar"}'))
break;
}
Expand Down

0 comments on commit 9283d0b

Please sign in to comment.