...
Code Block |
---|
--action addSpaceLink --project XXX --name YYY
or
--action addSpaceLink --project XXX (to link to the XXX space in Confluence) |
Example - Entire Site
If your instance is like our site where every project has a Confluence space with the same key as the Jira project, it is really easy!!!
Code Block |
---|
-a runFromProjectList --continue --common "-a addSpaceLink --project @project@ --name @project@" |
Tip |
---|
We use theĀ continue flag on this request since we do have a couple of projects on our site that do not have a corresponding space and those are going to generate an error. We just want to ignore those and keep going through all the projects. We will check those at the end to confirm the expected projects failed. |
...