...
Include Page |
---|
Often you need to run the same action against a set of issues. This describes how to do that using runFromIssueList.
runFromIssueList is like other run actions and how it behaves. It will run the same action for each issue in a issue list determined by a filter or search (JQL). The issue list generated is similar to how getIssueList works. This works by providing a substitution variable that provides the issue key to the common action to run.
Examples
--action runFromIssueList --search "project = 'zjiracli' and labels != null" --common "--action addLabels --issue @issue@ --labels done-by-action"
Notes
...
Substitution variables
Use @ surrounding the variable name in your action.
...
|