Last active
August 6, 2021 19:33
-
-
Save percybolmer/2bfe3beff4aabf1e0eb55f50ff5fa571 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// transitionIssue will move a issue into the new transition | |
func transitionIssue(client *jira.Client, issue jira.Issue, transition jira.Transition) error { | |
_, err := client.Issue.DoTransition(issue.ID, transition.ID) | |
return err | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment