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
Hi everyone, We’re always looking at how to improve Confluence and customer feedback plays an important role in making sure we're investing in the areas that will bring the most value to the most c...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.