diff options
Diffstat (limited to 'ops/besadii/main.go2')
-rw-r--r-- | ops/besadii/main.go2 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ops/besadii/main.go2 b/ops/besadii/main.go2 index 250e65ead834..8fada435ee57 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 } |