Update Issue Status
Transitions an issue to a new status.
For more information on the API for updating an issue status, see Transition Issue (opens in a new tab).
SDK Import:
from admyral.actions import update_jira_issue_status
Arguments:
Arugment Name | Description | Required |
---|---|---|
Issue ID or Key issue_id_or_key | The ID or the key of the issue to transition. | Yes |
Status status | The status to set the issue to. | Yes |
Returns
Nothing.
Required Secrets
Secret Placeholder | Description |
---|---|
JIRA_SECRET | Jira secret. See Jira setup |
SDK Example
update_jira_issue_status(
issue_id_or_key="SJ-23",
status="31",
secrets={
"JIRA_SECRET": "my_stored_jira_secret"
}
)