I am interested in creating a series of sub-tasks for an issue as a post-function when an issue is created. However, I don't want one of the sub-tasks created if the label "No-QA" is set. I am able to get the issues to create, but I'm not sure the correct syntax for checking if there is no "No-QA" label.
Not tested, but try:
! ("No-QA" in issue.labels*.label)
Try in the condition tester first.
This was giving me some issues as a condition in Jira Cloud, but the following works...
! ("No-QA" in issue.fields.labels)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Jamie, it works for me on JIRA 6.3.13!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.