Having this issue where within my Jira Automation where I create a new issue as a result of a label added to a ticket. The new ticket is supposed to have a different fix version, but even though the automation generates the new ticket and the automation log is "Success" --it continues to drop the Fix Version.
The fix version is selected in the gear dropdown of "Choose fields to set"
The fix version exists on tickets created outside the automation.
Labels from the previous ticket are being carried over.
This process has worked for other automations, but for some reason this particular fix version is not working.
The automations act sequentially are setup so that Group or Scrum 1 does their work and adds required labels, generating work for Scrum 2, to Scrum 3, etc. This fix version is the ticket created for Scrum 3 (2 steps down in this workflow)
Any thoughts or suggestions on why this fix version isn't working?
Hi @Michael Landry , thanks for your question.
To help with this type of troubleshooting, we typically need more information.
Please can you share
Thanks in advance for your collaboration!
Hi, @Valerie Knapp and that list looks familiar to me ;^)
I will remove my post so we can help focus the conversation.
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Bill Sheboy @Valerie Knapp
Thank you both! To answer questions to the best of my capability:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for this information, and I just replicated this symptom so this appears to be a defect where:
I also tested to confirm this was not caused by a version name collision effect.
I hypothesize this is a timing problem related to when the created issue is available to have the Fix Versions (and other fields) set. And I did not find this symptom listed in the public backlog so please work with your Jira Site Admin to submit a defect for it here: https://support.atlassian.com/contact/#/
There is a related defect indicating a possible permissions problem, but that is unlikely based upon the workaround I describe below...
For a workaround, you may used advanced edit with JSON to set the field rather than using the dropdown list: https://support.atlassian.com/cloud-automation/docs/advanced-field-editing-using-json/#Fix-Versions
After you remove the field in the Issue Create action, expand the More Options area and enter this expression:
{
"fields": {
"fixVersions" : [ { "name": "Content Delivery" } ]
}
}
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The JSON in the advanced field worked -- I appreciate you both @Bill Sheboy @Valerie Knapp for your time, investigation, and expertise! I will work with my Jira Site admin to submit a defect.
Thank you again!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Updated: removing my list of questions to help focus the discussion.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Lol @Bill Sheboy , I just copied this from that other post we're working on together. Great minds!
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.