Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi!
How can I say this simple scripted condition: previous issuetype was "Bug", current issuetype is "New Feature" in groovy?
Another solution.
You can create a new Custom Field that when an issue changes from 'Bug' to 'New Featura' put a value in custom field (ex. 'Yes') (you can do these with custom listener).
So, you'll have more easy to make the condition of groovy, because you've only have to check on the condition if the custom field is set to 'yes'.
Hope it helps.
Daniel
what is mean by previous issue type was bug and current issuetype is "New Feature" ?
do you mean issue created as bug and later moved to new feature?
or assumen current issue is TEST-12 bug and prvious issue is TEST-11 new feature, is it like this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have builtin script listener "Fast-track transition an issue":
event: Issue Moved
condition: issuetype was Bug, and new issuetype is New Feature.
And I don't know how to say this condition in groovy.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i am not getting exactly what do you want achive!!
can you explain little bit more about your requirement.
check this it may help you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Issue created as bug and later moved to new feature, at this moment listener should work. Only if it was a bug and now it's a new feature.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You'd need to run through the changehistory of the issue. Do you mean to check whether the issue type changed in this transition, or at any time previously?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is sample code in the UI for priority changed - you need to modify it for issuetype. Think the string you want is "issuetype", but could be wrong.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.