We use Jira Automations to set a FixedVersion automatically. We have many Jira automation rules that need to be updated with the same string representing the fixedVersion for the current sprint.
We would like to automate changing out the fixed version, which is represented as a string in an Automation. How can we automate updating this string in many rules? SomeProject v23Q2-6
{
"update":{
"fixVersions": [
{
"add": {
"name":"SomeProject v23Q2-6"
}
}
]
}
}
How can we accomplish this? Can we define a custom smart value maybe?
{
"update":{
"fixVersions": [
{
"add": {
"name":{issue.customField_CurrentFixedVersion}
}
}
]
}
}
And a bulk Update on that field at the start of the sprint? Any thoughts or critiques?
We accomplish our goal to be able to have control over a variable that is used when running an automation.
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.