https://github.com/levigo/github-action-jira-bulk-update
Action to update a specified field for all found Jira issues
https://github.com/levigo/github-action-jira-bulk-update
Last synced: about 1 year ago
JSON representation
Action to update a specified field for all found Jira issues
- Host: GitHub
- URL: https://github.com/levigo/github-action-jira-bulk-update
- Owner: levigo
- License: bsd-3-clause
- Created: 2022-08-03T13:05:16.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-02-15T00:32:16.000Z (over 1 year ago)
- Last Synced: 2025-06-11T01:51:16.680Z (about 1 year ago)
- Language: JavaScript
- Size: 4.08 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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](https://id.atlassian.com/manage-profile/security/api-tokens)
- `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
```yaml
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"
```
## Limitations
- Currently no complex fields are supported (e.g. "fixVersion")