Snippets

Adaptavist ScriptRunner for Jira Cloud Example Workflow Conditions

You are viewing an old version of this snippet. View the current version.
Revised by Kristian Walker e57ae1f
/*
 * This script provides some example conditions which can be added as 'ScriptRunner Script Conditions* inside of ScriptRunner for Jira Cloud'.
 * The conditions are wrote as Jira 
 * All right, title and interest in this code snippet shall remain the exclusive intellectual property of Adaptavist Group Ltd and its affiliates. Customers with a valid ScriptRunner 
 * license shall be granted a  non-exclusive, non-transferable, freely revocable right to use this code snippet only within their own instance of Atlassian products. This licensing notice cannot be removed
 * or amended and must be included in any circumstances where the code snippet is shared by You or a third party." 
*/


// The example below mandates that an issue must have at least PDF attachment. 
issue.attachments.filter(attachment => attachment.mimeType == 'application/pdf').length > 0 


HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.