The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Change the location of Confluence page based on Jira project

AtlassianAdmin
June 13, 2022

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. 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
PD Sheehan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
June 15, 2022

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

TAGS
AUG Leaders

Atlassian Community Events