forked from cloudnativeto/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repokitteh.star
43 lines (39 loc) · 1.38 KB
/
repokitteh.star
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
pin("github.com/repokitteh/modules", "4ee2ed0c3622aad7fcddc04cb5dc866e44a541e6")
use("github.com/repokitteh/modules/assign.star")
use("github.com/repokitteh/modules/review.star")
use("github.com/repokitteh/modules/wait.star")
use("github.com/repokitteh/modules/circleci.star", secret_token=get_secret('circle_token'))
use("github.com/envoyproxy/envoy/ci/repokitteh/modules/azure_pipelines.star", secret_token=get_secret('azp_token'))
use(
"github.com/envoyproxy/envoy/ci/repokitteh/modules/ownerscheck.star",
paths=[
{
"owner": "envoyproxy/api-shepherds!",
"path":
"(api/envoy[\w/]*/(v1alpha\d?|v1|v2alpha\d?|v2))|(api/envoy/type/(matcher/)?\w+.proto)",
"label": "v2-freeze",
"allow_global_approval": False,
"github_status_label": "v2 freeze violations",
},
{
"owner": "envoyproxy/api-shepherds!",
"path": "api/envoy/",
"label": "api",
"github_status_label": "any API change",
},
{
"owner": "envoyproxy/api-watchers",
"path": "api/envoy/",
},
{
"owner": "envoyproxy/dependency-watchers",
"path":
"(bazel/repository_locations\.bzl)|(api/bazel/repository_locations\.bzl)|(.*/requirements\.txt)",
},
],
)
alias('retest-circle', 'retry-circle')
alias('retest', 'retry-azp')
def _backport():
github.issue_label('backport/review')
handlers.command(name='backport', func=_backport)