In addition to the basic actions, @PLUGIN@ also provides:
set-resolution
: sets the resolution of the issue
set-status
: sets the status of the issue
set-status-and-resolution
: sets both the status and resolution of the issue
The set-resolution
action sets the issue's resolution. The first parameter is the resolution to set. So for example
action = set-resolution WORKSFORME
sets the issue's status to WORKSFORME
.
If you want to set the status and the resolution, use the set-status-and-resolution
action, so you can set both status and resolution in one go.
The set-status
action sets the issue's status. The first parameter is the status to set. So for example
action = set-status CONFIRMED
sets the issue's status to CONFIRMED
.
If you want to set the status to a value that also requires a resolution, use the set-status-and-resolution
action, so you can set both status and resolution in one go.
The set-status-and-resolution
action sets both the issue‘s status and it’s resolution in one go. The first parameter denotes the status to set, the second parameter denotes the resolution to set.
So for example
action = set-status-and-resolution RESOLVED FIXED
sets the issue‘s status to RESOLVED
and it’s resolution to FIXED
.