ソースを参照

Ignore versions.json

Brendan Abolivier 6 年 前
コミット
9186ca4d09
署名者: Brendan Abolivier <contact@brendanabolivier.com> GPGキーID: 8EF1500759F70623
共有1 個のファイルを変更した5 個の追加0 個の削除を含む
  1. 5
    0
      src/pusher/webhook.go

+ 5
- 0
src/pusher/webhook.go ファイルの表示

@@ -167,6 +167,11 @@ func pushFile(filename string) error {
167 167
 // TODO: Optimise this part of the workflow, as all files get open twice (here
168 168
 // and in pushFile)
169 169
 func isIgnored(filename string) (bool, error) {
170
+	// Always ignore versions.json
171
+	if strings.HasSuffix(filename, "versions.json") {
172
+		return true, nil
173
+	}
174
+
170 175
 	// If there's no prefix set, no file is ignored
171 176
 	if len(cfg.Grafana.IgnorePrefix) == 0 {
172 177
 		return false, nil