Example scripts
To homepage
Jira

Create Issues Script
App in script

ScriptRunner For Jira
by Adaptavist
Compatibility

Jira
Language |
groovy
def projectKey = project.key as String
// create two issues
Issues.create(projectKey, 'Task') {
summary = "Create Confluence space associated to the project"
description = "Don't forget to do this!."
}
Issues.create(projectKey, 'Task') {
summary = "Bootstrap connect add-on"
description = "Some other task"
}
Having an issue with this script?
Report it here