Hi,
I'm looking for workflow post validation for prevent Story to transition when:
1)Bug is linked into Story with,
2)Severity: S1 or S2,
3)Status: Done, Cancelled.
While, other bug severities ae allowed or any different issue type.
Post validator:
(linkedIssue.getAsString("issuetype") in ["Bug"]) && (!linkedIssue.getAsString("Severity") in ["Very High", "Critical"] || (linkedIssue.getAsString("status") in ["Done", "Cancelled"] && linkedIssue.getAsString("Severity") in ["S2", "S1"]))
Kindly,
Gilad
Hello, Good day. At the moment we don't have option to use JQL in condition and we have open FR : https://jira.atlassian.com/browse/JRACLOUD-67451
You can create a workaround to check the JQL after an issue is transitioned and if its not matching the JQL condition, then the rule can move the issue back to previous status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, please refer to : https://jira.atlassian.com/browse/JRASERVER-73066
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm trying a different approach, but it fails:
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.