I'm trying to set up an automation, I want to use "Issue Field Conditions" and have it check to see if my "Employment Type" custom field is not set to a certain value. I've only got four values in there.
When I go into my automation and add the issue condition, none of my values are showing up.
Any ideas on why this is?
When I go to submit the request, the values are definitely there as well as in the options.
This should be straightforward to implement
You can use the built-in script listener "Fast track issue on transition"
In this you can configure the listener to trigger it for the "issue commented" event for a specific project.
Based on the condition (Approve or Reject) you will need to add 2 listeners which fire two different transitions (approve in case of approve and so on )
In the conditions section you can check the "body" (for text "approve or "reject") of the last comment using the code snippet
ComponentAccessor.getCommentManager().getComments(issue).last().body
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.