Hi All,
I am trying to write a custom JQL that can be used in my Smartsheet-JIRA Connector WF to filter out only issues that have label "techops" from multiple projects (3 projects).
Then following JQL is throwing an error. Any suggestions or help will be highly appreciated.
project in ('FI', 'PWEB', 'RFE') and label = ('TechOps')
That did the trick! thanks everyone.
You are welcome,
Please make sure to mark the answer(s) that helped fix your problem as accepted, to help other people in the future and so that it will not show in unresolved questions!
Best regards,
JT
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is no name called "label" try "labels = "TechOps". More info here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should try the following :
project in ('FI', 'PWEB', 'RFE') and labels = 'TechOps'
Hope this helps,
JT
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.