Hi,
We have a bunch of issues in JIRA with a typo in a custom field value. The custom field holds values for URL's to our old bug tracker. The problem is that the host part of the URL is wrong in all of the issues.
Is there a way to fix this using bulk-edit or some other feature? To clariify, the need is to do a string replace for the existing values.
Thanks,
Yes, this is possible with JIRA Command Line Interface. Use runFromIssueList to do this for all issues satisfying a query. Use copyFieldValue to copy the custom field back to itself using findReplace and/or findReplaceRegex to do the substitution. Be careful to test this on a small number of issues first so you get it right. Use --simulate to see the copy actions that will be run based on your query.
Here is an example:
jira --action runFromIssueList --search project=zjiracli --common "-a copyFieldValue --issue @issue@ --field custom2 --field2 custom2 --findReplaceRegex this.com:that.com"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm.. It looks like the JIRA CLI costs money. For my simple need I think I will rather write script that uses the SOAP API rather than pay. Sorry.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
You should be able to use bulk edit to change the existing custom fields. However, please bear in mind that this can only work if the custom field is set to appear in all the issues that you are about to bulk edit. Otherwise, you might not be able to see the custom field when bulk-editing.
Cheers,
Joe
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, I'm aware that you can bulk-edit any field. However, you can only speficy one value for a field that will be applied to all items being bulk-edited. My question was about modifying existing values with it. Ie. change the beginning of the URL of each unique URL.
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.