Forums

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

Transfer release versions to other projects

Firas Amer
Contributor
December 2, 2018

I would like to copy the release versions created in a project to other projects, or automate them to be defined in specific other projects as well. Is it possible? Or this can be done only manually?

2018-12-02 17_37_33-Versions - Jira.png

2 answers

1 accepted

0 votes
Answer accepted
Firas Amer
Contributor
December 20, 2018

Automation for JIRA add-on can clone, create, release versions automatically in other projects. No coding required, nice interface. 

aamelyan September 5, 2023

Hi, I am looking for a way to move releases and issues attached to them to a different project too. Can you expand a bit on your answer as I am not finding that feature in the automation for JIRA add-on documentation? Thanks!

0 votes
Alexey Matveev
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 Leaders.
December 2, 2018

Hello,

It can be done only manually out of the box.

If you want to do it automatically, you would need to write a program or use an add-on.

For example, you could the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could write a script like this:

string[] versionNames;
JVersion jVersion;
string pKey = "projectKey";

versionNames = admGetProjectVersions(pKey);
for(string versionName in versionNames){

jVersion = admGetProjectVersion(pKey, versionName);
admAddProjectVersion(pKey, jVersion.name, jVersion.description, jVersion.releaseDate);
}
Firas Amer
Contributor
December 3, 2018

Thanks Alexey.

Do you think this automation could be done also with this add-on?

https://docs.automationforjira.com/

Alexey Matveev
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 Leaders.
December 3, 2018

I am not sure but I think it can not be done with the Automation for Jira add-on

Firas Amer
Contributor
December 19, 2018

I managed to do it with automation for Jira add on, very easy. No coding required

Alexey Matveev
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 Leaders.
December 20, 2018

Nice to hear! You could publish your solution.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events