The action will set the given field in Jira to the given value.
domain
: Domain name of the Jira cloud instance (e.g. your-domain.atlassian.net)username
: Jira Usernamepassword
: Jira Personal Access Token. Get it from herejql
: The JQL query to identify the issues to updatefieldName
: The name of the field to update (careful with custom fields)fieldValue
: The value to set the field toappendValue
: set totrue
if you want to append the value and not replace it
None
uses: levigo/github-action-jira-bulk-update@v1.0.0
with:
domain: "my-company.atlassian.net"
username: "technical-user@company.net"
password: "fmpUJkGhdKFvoTJclsZ03xw1"
jql: "project IN (TEST, TEST2)"
fieldName: "customfield_10069"
fieldValue: "This is a test"
- Currently no complex fields are supported (e.g. "fixVersion")