Sfoglia il codice sorgente

Don't process commits made by the puller

Brendan Abolivier 6 anni fa
parent
commit
a3309dfee3
Signed by: Brendan Abolivier <contact@brendanabolivier.com> GPG key ID: 8EF1500759F70623
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5
    0
      src/pusher/webhook.go

+ 5
- 0
src/pusher/webhook.go Vedi File

@@ -29,6 +29,11 @@ func HandlePush(payload interface{}, header webhooks.Header) {
29 29
 
30 30
 	var err error
31 31
 	for _, commit := range pl.Commits {
32
+		// We don't want to process commits made by the puller
33
+		if commit.Author.Email == "grafana@cozycloud.cc" {
34
+			continue
35
+		}
36
+
32 37
 		for _, addedFile := range commit.Added {
33 38
 			if err = pushFile(addedFile); err != nil {
34 39
 				panic(err)