Is there an automated way to delete attachments from completed issues?
We are running on the cloud. We are only allowed a certain amount of space. I can't seem to find where to see how much space we have used. Trying to stay in front of the situation and not wait til we hear from Atlassian and possibly get charged by them for having to clear the space for us. We are using JIRA to track Advertising/Marketing jobs, the attachments of completed issues aren't extremely important. Everything that gets attached we have on our local servers somewhere.
Can I ask why you would want to do this? Should the attachments not just remain on the issue?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use the removeAttachment action from JIRA Command Line Interface (CLI). That can be combined with other actions to meet your requirement:
jira --action runFromIssueList --jql "project=XXX and status=Closed" --common "--action runFromAttachmentList --issue @issue@ --common \"--action removeAttachment --issue @issue@ --id @attachmentId@\" "
Put that in your favorite job scheduler and run it every week for instance. You can make it more efficient by improving the JQL to limit the number of issues you check weekly - something like "and updatedDate > -8 days".
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.