im-open/Transition Jira Tasks by Query
Performs the given JQL query to find issues and transition them to the given status.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Maintainedlast commit Jun 26, 2025
- License
- MIT
Pinned Snippet
uses: im-open/transition-jira-issues@3b0669c53662f9fd5d930bef57eda1c5b8e132e5 # v1.1.0tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| domain-name | The domain name for Jira. | yes | — |
| jql-query | The JQL query to use to find issues that will be transitioned. If `issues` input is also provided, only issues returned by the JQL query and are included in the `issues` list will be transitioned. | no | — |
| issues | Comma delimited list of issues to transition. | no | — |
| transition-name | The name of the transition to perform. Examples might include Open, In Progress, Deployed, etc. | yes | — |
| update-fields | A map of issue screen fields to overwrite, specifying the sub-field to update and its value for each field. When multiple sub-fields or other operations are required, use 'update' input instead. | no | — |
| process-operations | A map containing the field name and a list of operations to perform. The fields included in here cannot be included in 'fields' input. | no | — |
| comment | Add a comment to the issue after the transition | no | — |
| missing-transition-as-successful | Mark as a successful if issue is missing the transition. | no | true |
| fail-on-transition-failure | Fail if some issues failed transitioning. | no | true |
| fail-if-issue-excluded | Fail if some issues are excluded from the original query. | no | true |
| fail-if-jira-inaccessible | Fail if Jira is inaccessible at the moment. Sometimes Jira is done but shouldn't block the pipeline. | no | false |
| jira-username | The username to login to Jira with in order to perform the transition. Will be ignored if not set. | yes | — |
| jira-password | The password to login to Jira with in order to perform the transition. Must be set if jira-username is set. If set when jira-username is not set, it will be ignored. | yes | — |
| create-notice | Add notification to runner with details about successful transitioned issues. | no | true |
| create-warnings | Add warning notifications to runner. | no | true |
Outputs
| name | description |
|---|---|
| processed-issues | Issues successfully transitioned, skipped or (if enabled) unavailable. |
| transitioned-issues | Issues successfully transitioned. |
| failed-issues | Issues in Jira not successfully processed. |
| unavailable-issues | Issues missing the specificed transition. |
| excluded-issues | Issues excluded that are listed in the 'issues' input but not identified by query. |
| is-successful | One or more issues were transitioned successfully and/or skipped. |
| some-transitioned | Some issues were transitioned successfully. |
| some-identified | Some issues were found in Jira. |
| some-unavailable | Some issues do not have transition. |
| some-skipped | Some issues skipped when already transitioned or other causes. |
| some-excluded | Some issues were excluded. |