Hi,
I have a script listener- 'issue updated' that work ok,
I would like to run this script to all issues in this project.
how can I define the issue object so he can run on all issues (I will use script console)
Hi,
You can make a JQL in a groovy script that will return an array of all issues in a project and then loop that array and execute your code on that issue.
The code could be something like this:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.search.SearchProvider
import com.atlassian.jira.jql.parser.JqlQueryParser
import com.atlassian.jira.web.bean.PagerFilter
def jqlQueryParser = ComponentAccessor.getComponent(JqlQueryParser)
def searchProvider = ComponentAccessor.getComponent(SearchProvider)
def issueManager = ComponentAccessor.issueManager
def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def projectKey = "DEMO" //THE PROJECT KEY
def queryString = "project = ${projectKey}"
def query = jqlQueryParser.parseQuery(queryString)
def projectIssues = searchProvider.search(query, user, PagerFilter.getUnlimitedFilter()).issues.key
projectIssues.each{ issueKey ->
def issue = issueManager.getIssueByCurrentKey(issueKey)
//YOUR CODE
}
I recommend to you to run it on a test environment (if you have any) first.
Hope it works for you.
Regards,
Marcos
@Marcos Sanchez I voted for your answer as well as accepting @Mark Markov 's answer. These gave me two parts of things that I... need.
Cheers!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Dan27
Or you can get issues via getIssueIdsForProject()
import com.atlassian.jira.component.ComponentAccessor
def project = ComponentAccessor.getProjectManager().getProjectByCurrentKey("DS")
def issuesIds = ComponentAccessor.getIssueManager().getIssueIdsForProject(project.id)
issuesIds.each {issueId ->
def issue = ComponentAccessor.getIssueManager().getIssueObject(issueId)
//YOUR CODE HERE
}
Hope it helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mark Markov , this variant just solved for part of a thing I am developing and is a clean, elegant way of doing this.
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.