You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am using JIRA cloud and installed ScriptRunner from the Atlassian Marketplace.
I was wondering how I can use ScriptRunner to pre-populate the Description field when creating a new ticket of a certain project / issue type?
In Script Listeners, I can only select "Issue created" for the "on these events", but I assume that is already too late and only executed when the issue was submitted through the "Create" button?
What I would need is took hook into an even such as "onCreate"? How do I achieve this?
And this is how my script would look like:
def projectKey = project.key as String
logger.info("Creating new issue in ${projectKey}")
logger.info("Checking for issue type Initiative")
def issueTypesReq = get("/rest/api/2/issuetype").asObject(List)
assert issueTypesReq.status == 200
def taskType = issueTypesReq.body.find { it.name == "MyCustomIssueType" }
assert taskType // Must have an issue type named Initiative
logger.info("Updating Description field")
def result = put("/rest/api/2/issue/${issue.key}")
.header('Content-Type', 'application/json')
.body([
fields: [
description: "h2. Description:\nBlabla\n\n"
]
])
.asString()
Can anybody give me a hint where / how to place this?
Jira Cloud does not yet support the functions that Scriptrunner on Server does that could help you with this (Behaviours).
As you suspect, the listener is too late - the create event is fired when the human clicks the "create" button and commits the data they've entered (including description). Your script, if run as a listener, would overwrite what they've typed into the description.
Additional information to this, you can use the Issue Created event to perform actions after an is issue. You will need to use a Post Function script if you want it to happen when an issue is created as a for all events for listeners occur after the event that triggers them to happens.
The description is just a string and you can refer to the Create Task example on the Script Console page for an example syntax needed to set the description.
Hope this helps.
Thank you.
Kind Regards
Kate
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.