Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This example demonstrates how to create a checklist with the item selected from a custom dropdown field.

  1. Ensure the Save checklist data to Jira custom fields option is enabled.


  2. To create your automation rule, use Issue updated as the trigger. Save.

    Image RemovedImage Added


  3. Add any appropriate conditions and save.

    Image Removed


    Image Added

  4. Select Edit issue as the action and Checklist Text as the field to be edited.

  5. You might want to add the title of the checklist proceeded preceded by three dashes as shown below.
    You will also need the custom field ID of the dropdown field. Read how to find a custom field ID.
    Add the following text (with the correct custom field ID to iterate through the dropdown list and display the selected value):

    Code Block
    --- Checklist Title
    {{#customfield_10070}}
    * [open] {{.}}
    {{/}}


...