Issue Checklist for Jira is now Checklist for Jira. New name, same great app. Please go here to see our new documentation site.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

You can also validate to ensure that a specific item in the checklist is complete by using the Regular Expression Check validator.

To set the validator:

  1. Navigate to Project Settings > Workflows

  2. Click the pencil icon to edit the workflow.

  3. Select Diagram mode and click on the transition where you want to add the validator.

  4. Click on Validators.

  5. Click Add validator.

  6. Select the Regular Expression Check validator and click Add.

  7. Select Checklist Text as the field to evaluate.

  8. Enter the appropriate expression.

    1. To check that a checklist item called first item is complete

      (?ms).*^\*\s+\[(x|done|skipped)\]\s+first item.*
    2. To check that two items, called first item and second item are complete

      (?ms).*^\*\s+\[(x|done|skipped)\]\s+first item.*^\*\s+\[(x|done|skipped)\]\s+second item.*
    3. To check that an item in a given position (4th) on the list is complete

      \A(\*.*\r?\n){3}\*\s+\[(x|done|skipped)]\s+(.*\r?\n?)*\Z

      The example above will block the transition if the fourth item in the list is incomplete. To block transition if Nth item is incomplete, change the 3 in the expression above to N - 1.
      Note that this expression cannot be used to validate for the first item in the list, and that the list must contain at least N items. If you want to validate for more than one position in the list, you will need to create separate validators for each position.

    4. To check that there are no items in an Open status

      (?s)^(?!.*\*\s+\[open\]).*$
    5. The following regular expressions can be used to make the transition require at least one checked item, and optionally to require that checklist has at least one item. The expressions can work with or without statuses. If you use custom statuses, you will need to adjust the expressions.

      1. Statuses disabled, allow empty checklist

        (?s)^(?!.*\*\s+\[.*?\])|(?=.*\*\s+\[x\]).*$
      2. Statuses disabled, require at least one item

        (?s)^(?=.*\*\s+\[x\]).*$
      3. Statuses enabled, allow empty checklist

        (?s)^(?!.*\*\s+\[.*?\])|(?=.*\*\s+\[done|skipped\]).*$
      4. Statuses enabled, require at least one item

        (?s)^(?=.*\*\s+\[done|skipped\]).*$
  9. Click Add again to confirm creation of the validator.

  10. Click Publish draft to save the changes.

  11. Test the validator by attempting to transition an issue which does not meet the criteria. The transition will fail.

You can test your regular expression in an online tool. If you’re not seeing the expression you need, let us know and we’ll see if we can help.

Troubleshooting Validators

Checklist for Jira uses issue entity properties to provide the following features:

Therefore, the Checklist must be able to set issue entity properties. This is enabled by default. However, if a jira.permission.* workflow property has been set on a workflow step, Issue Checklist may not be able to set issue entity property.

For example, the following property will prevent Checklist from setting issue properties, and features listed above won't work correctly:

Removing the jira.permission.* workflow property and using the standard Jira permissions to control who can edit the issue will allow the Checklist functions to work.

  • No labels