Skip to content
cloud

GitHub Action

Jira bulk update issues

v1.3.1 Latest version

Jira bulk update issues

cloud

Jira bulk update issues

Action to update a specified field for all found Jira issues

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Jira bulk update issues

uses: levigo/[email protected]

Learn more about this action in levigo/github-action-jira-bulk-update

Choose a version

Jira bulk update multiple issues

The action will set the given field in Jira to the given value.

Inputs

  • domain: Domain name of the Jira cloud instance (e.g. your-domain.atlassian.net)
  • username: Jira Username
  • password: Jira Personal Access Token. Get it from here
  • jql: The JQL query to identify the issues to update
  • fieldName: The name of the field to update (careful with custom fields)
  • fieldValue: The value to set the field to
  • appendValue: set to true if you want to append the value and not replace it

Outputs

None

Example usage

uses: levigo/[email protected]
with:
  domain: "my-company.atlassian.net"
  username: "[email protected]"
  password: "fmpUJkGhdKFvoTJclsZ03xw1"
  jql: "project IN (TEST, TEST2)"
  fieldName: "customfield_10069"
  fieldValue: "This is a test"

Limitations

  • Currently no complex fields are supported (e.g. "fixVersion")