瀏覽代碼

Filter push events by ref

Brendan Abolivier 6 年之前
父節點
當前提交
1391394ac9
簽署人: Brendan Abolivier <contact@brendanabolivier.com> GPG 金鑰 ID: 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