@@ -268,6 +268,10 @@ func TestAnnotationRegexp(t *testing.T) {
268268 {re : `^v\d+\.\d+\.0\+k0s\.\d+$` , str : "v1.2.0+k0s.0" , match : true },
269269 {re : `^v\d+\.\d+\.0\+k0s\.\d+$` , str : "v1.2.0-beta.+k0s.0" , match : false },
270270 {re : `^v\d+\.\d+\.0\+k0s\.\d+$` , str : "v1.2.0+k0s.1" , match : true },
271+ {re : `(?i)^(interlink-hq\/.*|interTwin-eu\/(.*interlink.*|vk-test-set))$` , str : "interTwin-eu/interLink" , match : true },
272+ {re : `(?i)^(interlink-hq\/.*|interTwin-eu\/(.*interlink.*|vk-test-set))$` , str : "intertwin-eu/interLink" , match : true },
273+ {re : `(?i)^(interlink-hq\/.*|interTwin-eu\/(.*interlink.*|vk-test-set))$` , str : "interlink-hq/interLink" , match : true },
274+ {re : `(?i)^(interlink-hq\/.*|interTwin-eu\/(.*interlink.*|vk-test-set))$` , str : "interlink-hq/x-y-z" , match : true },
271275 {re : `(?i)^interTwin-eu\/(.*interlink.*|vk-test-set)$` , str : "interTwin-eu/interLink" , match : true },
272276 {re : `(?i)^interTwin-eu\/(.*interlink.*|vk-test-set)$` , str : "intertwin-eu/interlink" , match : true },
273277 {re : `(?i)^intertwin-eu\/(.*interlink.*|vk-test-set)$` , str : "interTwin-eu/interLink" , match : true },
0 commit comments