Hey guys:
I have the following problem:
Am I doing an action in JMWE, which requires a condition?
If there is a linked item of type XX then OK.
I tried a few ways but nothing worked:
{{ linkedIssue.fields.issuelinks.includes ("XX") }} "It was not"
{{ linkedIssue.fields.issuelinks.name == ("XX") }} "It wasn't"
Can anyone here help me?
Thanks in advance
Hi Navin,
This JQL returns all issues created more than 7 days ago and which are on the Open status:
created < -7d AND status = Open
For simplicity, the status condition could be avoided by using a normal transition from Open to Escalate statuses, instead of a global transition.
There are apps which provide you with conditions based on JQL queries, like Jira Workflow Toolbox (Server), and other apps which enable alternative ways to achieve the same goal, like JMWE using expressions, or ScriptRunner's scripted conditions, among other.
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.