Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Last active August 6, 2021 19:33
Show Gist options
  • Save percybolmer/2bfe3beff4aabf1e0eb55f50ff5fa571 to your computer and use it in GitHub Desktop.
Save percybolmer/2bfe3beff4aabf1e0eb55f50ff5fa571 to your computer and use it in GitHub Desktop.
// 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