Hello,
We utilize a recurring automation rule for on-going maintenance for our clients website. We also have a singular document that we track any sort of patches or workarounds on that we link to this task so everyone knows what to look for.
Is it possible for those Confluence pages links to be retained when using an automation rule? So far I only see the ability to do this with issue links when building the automation and had assumed these links would be retained since they generally are when manually cloning an issue.
Hi @Daniels
This is a great use case to leverage Jira Cloud REST API inside your Automation.
I ran a quick lab and managed to get the remote link from a Jira issue and create a remote link to the issue cloned from the original one. Therefore, you can reuse this solution to your scenario:
A few tricks:
{
"globalId": "appId=&pageId=",
"application":
{
"type": "com.atlassian.confluence",
"name": "System Confluence"
},
"relationship": "Wiki Page",
"object":
{
"url": "https://confluence-site.atlassian.net/wiki/pages/viewpage.action?pageId=23234",
"title": "Wiki Page",
"icon":{},
"status":
{
"icon":{}
}
}
}
Cheers,
Alex
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.