Wrapped go-jira CLI action. Check out go-jira documentation for more arguments and usage details
Requires Jira Login to operate
Example workflow to add a comment to an issue:
workflow "Comment issue" {
on = "push"
resolves = ["Jira Login"]
}
action "Jira Login" {
uses = "atlassian/gajira-login@v1.0.0"
secrets = ["JIRA_BASE_URL", "JIRA_USER_EMAIL", "JIRA_API_TOKEN"]
}
action "Jira CLI" {
needs = "Jira Login"
uses = "atlassian/gajira-cli@v1.0.0"
args = "--issue=GA-1 --comment=\"Actions in action\""
}
endpoint
- base URL of Jira instanceemail
- Jira user email
JIRA_API_TOKEN
- Authentication token saved by Jira Login Action