Tool to help you manage your Grafana dashboards using Git.

main.go 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package main
  2. import (
  3. "fmt"
  4. "strconv"
  5. "gopkg.in/go-playground/webhooks.v3"
  6. "gopkg.in/go-playground/webhooks.v3/github"
  7. )
  8. const (
  9. path = "/webhooks"
  10. port = 3016
  11. )
  12. func main() {
  13. hook := github.New(&github.Config{Secret: "MyGitHubSuperSecretSecrect...?"})
  14. hook.RegisterEvents(HandleRelease, github.ReleaseEvent)
  15. hook.RegisterEvents(HandlePullRequest, github.PullRequestEvent)
  16. err := webhooks.Run(hook, ":"+strconv.Itoa(port), path)
  17. if err != nil {
  18. fmt.Println(err)
  19. }
  20. }
  21. // HandleRelease handles GitHub release events
  22. func HandleRelease(payload interface{}, header webhooks.Header) {
  23. fmt.Println("Handling Release")
  24. pl := payload.(github.ReleasePayload)
  25. // only want to compile on full releases
  26. if pl.Release.Draft || pl.Release.Prerelease || pl.Release.TargetCommitish != "master" {
  27. return
  28. }
  29. // Do whatever you want from here...
  30. fmt.Printf("%+v", pl)
  31. }
  32. // HandlePullRequest handles GitHub pull_request events
  33. func HandlePullRequest(payload interface{}, header webhooks.Header) {
  34. fmt.Println("Handling Pull Request")
  35. pl := payload.(github.PullRequestPayload)
  36. // Do whatever you want from here...
  37. fmt.Printf("%+v", pl)
  38. }