Good afternoon.
question on Jira expressions (workflow in condition ).
Can you please tell me how to make the reverse condition so that the transition is visible if the label field does not contain certain values?
For the case where contains made the following request:
issue.labels.includes('rpmtests')
First thing, I am not using the Jira Expressions feature with workflow...And...according to the documentation you can NOT the expression like this:
!issue.labels.includes('rpmtests')
Kind regards,
Bill
Hi @Michail Bashlykov ,
try with :
issue.labels.includes('rpmtests')<1
It should works.
Please let me know,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Fabio Racobaldo _Herzum_ Thank you, but not work.
also i tried:
issue.labels.includes('rpmtests') == null
don't work too(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try with :
!issue.labels.includes('rpmtests')
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.
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.