Brendan Abolivier 7 лет назад
Родитель
Сommit
1391394ac9
Подписано: Brendan Abolivier <contact@brendanabolivier.com> Идентификатор ключа GPG: 8EF1500759F70623
1 измененных файлов: 5 добавлений и 0 удалений
  1. 5
    0
      src/pusher/webhook.go

+ 5
- 0
src/pusher/webhook.go Просмотреть файл

39
 		panic(err)
39
 		panic(err)
40
 	}
40
 	}
41
 
41
 
42
+	// Only push changes made on master to Grafana
43
+	if pl.Ref != "refs/heads/master" {
44
+		return
45
+	}
46
+
42
 	// Iterate over the commits descriptions from the payload
47
 	// Iterate over the commits descriptions from the payload
43
 	for _, commit := range pl.Commits {
48
 	for _, commit := range pl.Commits {
44
 		// We don't want to process commits made by the puller
49
 		// We don't want to process commits made by the puller