import ( "fmt" "k8s.io/contrib/mungegithub/github" ) func main() { // Create a GitHub client using a personal access token token := "my-github-access-token" client := github.NewClient(token) // Get an issue by number owner := "my-org" repo := "my-repo" issueNumber := 123 issue, err := client.Issues().Get(owner, repo, issueNumber) if err != nil { panic(err) } // Remove the "bug" label from the issue labelName := "bug" issue, err = github.MungeObject(issue).RemoveLabel(labelName).Do() if err != nil { panic(err) } fmt.Printf("Removed %q label from issue %d\n", labelName, issue.GetNumber()) }In this example, we first create a new `GitHub` client using a personal access token. We then get an issue by its number and remove the "bug" label from that issue using `MungeObject.RemoveLabel()`. Finally, we print a message indicating that the label was successfully removed. Overall, the `k8s.io/contrib/mungegithub/github` package library provides useful utilities for interacting with GitHub objects such as issues, pull requests, and labels.