forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repokitteh.star
46 lines (42 loc) · 1.47 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
44
45
46
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/envoyproxy/envoy/ci/repokitteh/modules/azure_pipelines.star", secret_token=get_secret('azp_token'))
use("github.com/envoyproxy/envoy/ci/repokitteh/modules/newpr.star")
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",
"auto_assign": True,
},
{
"owner": "envoyproxy/api-watchers",
"path": "api/envoy/",
},
{
"owner": "envoyproxy/dependency-shepherds!",
"path":
"(bazel/.*repos.*\.bzl)|(bazel/dependency_imports\.bzl)|(api/bazel/.*\.bzl)|(.*/requirements\.txt)|(.*\.patch)",
"label": "deps",
"allow_global_approval": False,
"github_status_label": "any dependency change",
},
],
)
alias('retest', 'retry-azp')
def _backport():
github.issue_label('backport/review')
handlers.command(name='backport', func=_backport)