How can i easily change projectlead (bulk change) in jira cloud?
Can i use an automation rule for doing this or do i need a plugin?
thanks for feedback.
Automation can't do it.
As usual Bob Swift's excellent ACLI (Atlassian Command Line Interface) can.
You would use updateProject with --lead parameter. To change in Bulk, you could combine that with runFromProjectList
It would be something like:
acli --action runFromProjectList --regex "ZJIRACLIPROJECTS.*" \
--common "-a updateProject \
--project \"@project@\" --lead \"newlead@yourcompany.com\" " --continue
Or if you have a list of projects in a CSV where you need to bulk-change the lead, you could do something like this:
acli --action runFromCSV --file newleads.csv --common "-a updateProject \
--project \"@project@\" --lead \"@lead@\" " \
--options setReplacementVariables --continue
This assumes a newleads.csv file that looks like this:
project,lead
FOO,foolead@yourcompany.com
BAR,barlead@yourcompany.com
Automation is for changing issues, not project settings. Also, there's no bulk change for project lead, as there's only one lead per project.
I don't remember seeing any app that would allow you to change the lead for multiple projects in one go, I'd be looking to scriptrunner to write some one-off code for it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I assume that you've resolved your issue. But maybe someone else will have similar issue. I can recommend using add-ons called Projectrak - Project Tracking for Jira.
If you have any question how to do using that, please don't hesitate to contact me :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you very much for the recommendation, @Anna Konieczna; however, the bulk change feature is only available for the Data Center/Server version at the moment.
If @Bruno Staub, you're more curious about our app in its cloud version, you can check it here.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Huwen Arnone _Deiser_ oh ok. I was thinking that it also works for jira cloud. I'm using server and it works perfect for me :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There's a free app I made on marketplace that does just that using CSV.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I suspect the Jira API could do it, but that's still writing some code (outside of Jira Automation).
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.