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?
Automation for JIRA add-on can clone, create, release versions automatically in other projects. No coding required, nice interface.
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!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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:
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);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Alexey.
Do you think this automation could be done also with this add-on?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not sure but I think it can not be done with the Automation for Jira add-on
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I managed to do it with automation for Jira add on, very easy. No coding required
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nice to hear! You could publish your solution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.