Hello all,
I'd like to sync the fix version of the subtask whenever the fix version of the parent is updated, so a listener. Not exactly sure where to start. Any help would be awesome. Thanks!
It's possible to do right now with Automation which is available for all Cloud Instances for free and out-of-the-box
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You would need a plugin for it like Power Scripts Or ScriptRunner. You would need to write a listener on Update Issue event. then if you have Power Scripts your code would look like this.
string[] subtasks = subtasks(key);
for
(string subtask in subtasks) {
%subtask%.fixVersions = fixVersions;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.