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.
jira cloud - I am using script runner cloud and using script post function feature to create a subtask after a transition based on check custom field value. I am not sure what to add in the condition in the script context. Still learn scripting so am a little week. This is how far i got :
// Get all the fields from the issue as a Map
def fields = issue.fields as Map
// Get the Custom field to get the option value from
def customField = get("/rest/api/2/field")
.asObject(List)
.body
.find {
(it as Map).name == 'field name'
if it's a post function you can do this:
def MY_CUSTOM_FIELD_ID = 'customfield_10000'
def customFieldValue = issue.fields[MY_CUSTOM_FIELD_ID]
if(customFieldValue != 'Expected Value') {
return
}
post("/rest/api/2/issue")
.header("Content-Type", "application/json")
.body([
fields: [
summary : "My Issue",
description: "Hello World!",
project : [
id: projectId
],
issuetype : [
id: taskTypeId
]
]
]).asString()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.