about summary refs log tree commit diff
path: root/ops/besadii/main.go2
diff options
context:
space:
mode:
Diffstat (limited to 'ops/besadii/main.go2')
-rw-r--r--ops/besadii/main.go25
1 files changed, 3 insertions, 2 deletions
diff --git a/ops/besadii/main.go2 b/ops/besadii/main.go2
index 250e65ead8..8fada435ee 100644
--- a/ops/besadii/main.go2
+++ b/ops/besadii/main.go2
@@ -28,6 +28,7 @@ import (
 )
 
 var branchRegexp = regexp.MustCompile(`^refs/heads/(.*)$`)
+var metaRegexp = regexp.MustCompile(`^refs/changes/\d{0,2}/(\d+)/meta$`)
 var patchsetRegexp = regexp.MustCompile(`^refs/changes/\d{0,2}/(\d+)/(\d+)$`)
 
 // refUpdated is a struct representing the information passed to
@@ -158,8 +159,8 @@ func refUpdatedFromFlags() (*refUpdated, error) {
 		return nil, nil
 	}
 
-	if branchRegexp.MatchString(update.ref) {
-		// branches don't need special handling -> just move on
+	if branchRegexp.MatchString(update.ref) || metaRegexp.MatchString(update.ref) {
+		// these refs don't need special handling, just move on
 		return &update, nil
 	}