Hey,
What I'm trying to do is create an automation that does the following:
I had this working when there was 1 version in the fix version field, but as I'm learning, the users are having multiple versions and now I can't get the branching and array working to have each version checked in steps 3 and 4 (if applicable).
This is one of the lookup queries I've tried for step 2.
fixversion in ( {{triggerissue.fixVersions.name.asJsonString.asJsonArray}} ) AND statuscategory NOT IN (Done)
Does anyone have any suggestions on how I can accomplish this? I am running in to the wall here.
Thank you!
Without seeing your entire rule (and audit log details) for context...
What is the purpose of the asJsonArray added to the end of the expression? I would expect using just asJsonString would be sufficient to produce the CSV list:
fixVersion IN ( {{triggerIssue.fixVersions.name.asJsonString}} ) ...
And...what is the scope of the rule: single-project, multiple-project, or global? For other than single-project, perhaps use the version ID rather than the names to reduce the risk of collisions.
fixVersion IN ( {{triggerIssue.fixVersions.id.join(", ")}} ) ...
Kind regards,
Bill
I was trying to pull out when there were two fix versions vs one in the rule. This is for a single project scope.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The format you provided did help a bit, but the error I got was "The provided smart value couldn't be resolved to an object"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Heather. Rather than suggesting two different approaches, please continue with the thread with Andrea and I will pitch in to help if an alternative is needed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here's my thoughts:
1. When ticket is resolved
2. Go through each fix version
3. Do a issue lookup to see if any issues are still open
4. If none are open, release that Fix Version
See screenshots
Note for the LookupIssues it needs to be "fixVersion in ({{fixVersionVar.id}}) AND resolution is empty" (screenshot says fixVersions it needs to be singular). Note also I haven't tested this (haven't saved it) so please let me know if this works as expected :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey,
The issue I'm running into is that it's not having a good time pulling out those fix versions. It seems to not be able to make it an object.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just tested the rule in my environment. Make two minor adjustments:
- Change {{lookupIssues}} to {{lookupIssues.size}} in the If: Compare two values
- Change fixversions to fixVersion in the JQL
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also see if the For each: Smart value is set up as shown in the screenshot. It should only show one fix version id. It goes through each one mentioned on the issue one by one, so it knows which one to close
EDIT: I see your error now more clearly - make sure the lookup Issues component is within the branch or it won't work as expected
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Andrea Robbins
I did the updates you're suggesting, but I am still getting the error that the provided smart value couldn't be resolved to be an object.
I think I'm doing something wrong at the Branching step.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Heather, would you please post an image of your current complete rule and of the audit log details showing the execution (with all of the areas at the right side expanded)? That context may help explain what you are observing. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline 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.