gajira-transition
gajira-transition copied to clipboard
Add support for issue resolution
Hi,
Our Jira setup requires a Resolution ("Done", "Won't Fix", etc.) when closing an issue, but there doesn't seem to be a way to set that via this GH Action.
I'm also very interested in this feature. A solution to https://github.com/atlassian/gajira-transition/issues/23 would also solve this issue.
This POST body achieved a transition to the "Closed" status with a resolution of "Won't Do" for my organization:
{
"transition": {
"id": "555"
},
"fields": {
"resolution": {
"name": "Won't Do"
}
}
}