mirror of https://github.com/velour/catbase.git
git: add filter for branches on github
This commit is contained in:
parent
b2136c1b41
commit
6e66498d25
|
@ -36,10 +36,15 @@ func (p *GitPlugin) githubEvent(w http.ResponseWriter, r *http.Request) {
|
|||
repo = push.Repository.Name
|
||||
owner = push.Repository.Owner.Login
|
||||
commits := ""
|
||||
filterBranch := p.c.Get(fmt.Sprintf("github.%s.%s.branches", owner, repo), "*")
|
||||
if len(push.Commits) == 0 {
|
||||
log.Debug().Msg("GitHub sent an empty changeset")
|
||||
return
|
||||
}
|
||||
if filterBranch != "*" && !strings.Contains(push.Ref, filterBranch) {
|
||||
log.Debug().Msgf("Ignoring GitHub push to %s", push.Ref)
|
||||
return
|
||||
}
|
||||
for _, c := range push.Commits {
|
||||
m := strings.Split(c.Message, "\n")[0]
|
||||
commits += fmt.Sprintf("%s %s pushed to %s (<%s|%s>) %s\n",
|
||||
|
|
Loading…
Reference in New Issue