blob: cec5d185dfef4fed2faa5ab0e4e3186e8b4166b8 [file] [log] [blame]
// Copyright 2023 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package policies
import "fmt"
// Convert the milestone + num into a useful regex for query.
func mileStoneRegex(numMileStones int, mileStone int) string {
baseStr := fmt.Sprintf("%d", mileStone)
for i := 1; i <= numMileStones; i++ {
baseStr = fmt.Sprintf("%s|%s", baseStr, fmt.Sprintf("%d", mileStone-i))
}
return baseStr
}