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.
We have a script runner post function that create a Confluence page and links it to the triggering Jira issue. However, now we want to check the project in which Jira ticket is created and create Confluence page in a different location. Basically use different ParentPageID for tickets created in different project.
Here is the code that I tried but isn't working.
def projectname = underlyingIssue?.getProjectObject()
if (projectname == "OTP") {
def parentPageId = "2082177064"
}
else {
def parentPageId = "2055077911"
}
My question - How do I identify project key of the issue in question? 2) Is this how location of Confluence Page creation be differed.
In a behaviour, you will only have "underlyingIssue" after the issue is fully created. During create
I'd recommend you refer to "issueContext" instead if you need the project key. This will always work.
def projectKey = issueContext.projectObject.key
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.