/
Validate before transition

Validate before transition

You can prevent the Jira issue from transition to the next state if not all Smart Checklist items are checked.

Since version, v5.2.0 Smart Checklist add-on doesn’t need “Smart Checklist Progress” field setup

If your Smart Checklist version is lower than v5.2.0 - Follow these instructions to add the "Smart Checklist Progress" custom field, then proceed to the steps below.

Set up transition validator

  1. Go to Workflows

  2. Choose one that you want to add validation to and click Edit

  3. Choose transition and click on "Validators" link

  4. Add Validator

  5. Choose "Smart Checklist Completed Validator"

  6. Click Add - new Validator will be saved

  7. Then Publish this changed workflow

Check Validator in action

  1. Go to Kanban board (or Issue view)

  2. Try to change the state of an item with opened checklist items

  3. You'll get the error:

  4. If you check all Smart Checklist items - you'll be able to transition the Jira issue successfully!

If you want to know how to display "Show Checklist progress" on Agile boards read Progress on Agile Board

 

Validate if certain items are completed

You can add a validator that verifies if only certain items have been checked off before allowing the transition.

Let’s imagine, you have the following checklist:

The Checklists custom field will contain the following string:

# Definition of Done + Code produced (all to do items in code completed) > Code commented, checked in and run against current version in source control ~ Code reviewed > @Peer reviewed (or produced with pair programming) > meeting development standards - Builds without errors - Unit tests written and passing - Deployed to system test environment and passed system tests - Acceptance criteria met > Passed UAT (User Acceptance Testing) > signed off as meeting requirements by@ProductOwner - Any build/deployment/configuration changes implemented/documented/communicated - Relevant documentation/diagrams produced and/or updated

Using Scripted (Groovy) Validator you can check if all items with the text 'Code reviewed' and 'Unit tests are written and passing' are done:

import com.atlassian.jira.component.ComponentAccessor import com.opensymphony.workflow.InvalidInputException def customFieldManager = ComponentAccessor.getCustomFieldManager() def customField = customFieldManager.getCustomFieldObject("customfield_10201") if (!customField) { log.warn("Custom field with ID 'customfield_10201' not found!") return true } def checklist = issue.getCustomFieldValue(customField) as String if (!checklist || checklist.trim().isEmpty()) { return true } def checklistItems = checklist.split("\\n")*.toString().findAll({ it -> it.matches("^[-|+|~].*")}) for (String item in checklistItems) { if (!item.startsWith("+") && (item.contains("Code reviewed") || item.contains("Unit tests written and passing"))) { throw new InvalidInputException("Checklist validation failed: '${item}' is not completed.") } } return true

Using Custom Script Validator in ScriptRunner

To implement this validation using Custom Script Validator, follow these steps:

  1. Navigate to Jira Administration > Issues > Workflows, edit the relevant workflow, and select the transition where the validation should be applied.

  2. In the transition settings, go to the Validators tab and add a Custom Scripted Validator.

  3. Insert the script above into the script field, ensuring to replace customfield_10201 with your actual field ID.

  4. Customize the checklist items: The script currently checks for the items 'Code reviewed' and 'Unit tests written and passing' as an example. You should replace these values with the specific checklist items relevant to your workflow.

  5. Save the validator and publish the workflow changes.

Once added, this validator will check if the required checklist items are completed before allowing the issue to transition. If any of the specified items (e.g., 'Code reviewed' or 'Unit tests written and passing') are not marked as done, the transition will be blocked, and an error message will be shown to the user.

Fixing slow Issue transition with validation enabled

The following information could be helpful if the checklist validation is noticeably slowing down the Issue transition.

The validations are essentially based on the following query:

select * from "AO_C2A220_ITEM" acai join "AO_C2A220_STATUS" acas on acai."STATUS_ID" = acas."ID" join "AO_C2A220_CHECKLIST" acac on acai."CHECKLIST_ID" = acac."ID" where acac."ENTITY_ID" =1279600 and acas."STATE" ='CHECKED' and acai."IS_CHECKBOX"=true and acai."MANDATORY" = true;

Update statistics

In order to assure the performance of that query, the database administrator needs to be sure that correct statistics are present in the database. This can be done with the following SQLs:

PostgreSQL

MySQL

Oracle

Microsoft SQL