The Select List (cascading) field type is currently not supported in Automation for Jira for multiple operations

XMLWordPrintable

    • 0

      Problem summary

      The Select List (cascading) field type is currently not supported in Automation for Jira.

      Workaround

      Workaround from https://support.atlassian.com/jira-software-cloud/docs/advanced-field-editing-json/#field-syntax-examples:

      {
         "fields": {
        "First Field" : { "value": "First value", "child": { "value" : "Child value"} }
          }
      }
      

      To copy values from the Select list (Cascading):

      {
        "update": {
          "Cascading": [
            {
              "set": {
                "value": "{{triggerIssue.fields.Cascading.value}}",
                "child": {
                  "value": "{{triggerIssue.fields.Cascading.child.value}}"
                }
              }
            }
          ]
        }
      }
      

      Reference: https://community.atlassian.com/t5/Marketplace-Apps-Integrations/How-can-I-copy-a-cascading-select-value-with-Automation-for-JIRA/qaq-p/585395

            Assignee:
            Charlie Gavey
            Reporter:
            Prince N (Inactive)
            Votes:
            87 Vote for this issue
            Watchers:
            81 Start watching this issue

              Created:
              Updated: