mirror of https://github.com/mongodb/mongo
GitOrigin-RevId: 61978f72d77c4909e7160a9f5352a785a81f078c
This commit is contained in:
parent
776544f14d
commit
b27023d431
|
|
@ -35,6 +35,7 @@ WORKSPACE.bazel @10gen/devprod-build @svc-auto-approve-bot
|
||||||
# The following patterns are parsed from ./.github/OWNERS.yml
|
# The following patterns are parsed from ./.github/OWNERS.yml
|
||||||
/.github/ @10gen/server-root-ownership @svc-auto-approve-bot
|
/.github/ @10gen/server-root-ownership @svc-auto-approve-bot
|
||||||
/.github/ALLOWED_UNOWNED_FILES.yml @svc-auto-approve-bot alex.neben@mongodb.com
|
/.github/ALLOWED_UNOWNED_FILES.yml @svc-auto-approve-bot alex.neben@mongodb.com
|
||||||
|
/.github/workflows @10gen/devprod-correctness @svc-auto-approve-bot
|
||||||
|
|
||||||
# The following patterns are parsed from ./bazel/OWNERS.yml
|
# The following patterns are parsed from ./bazel/OWNERS.yml
|
||||||
/bazel/**/* @10gen/devprod-build @svc-auto-approve-bot
|
/bazel/**/* @10gen/devprod-build @svc-auto-approve-bot
|
||||||
|
|
|
||||||
|
|
@ -6,3 +6,6 @@ filters:
|
||||||
- "/ALLOWED_UNOWNED_FILES.yml":
|
- "/ALLOWED_UNOWNED_FILES.yml":
|
||||||
approvers:
|
approvers:
|
||||||
- alex.neben@mongodb.com
|
- alex.neben@mongodb.com
|
||||||
|
- "workflows":
|
||||||
|
approvers:
|
||||||
|
- 10gen/devprod-correctness
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ def make_workflow(workflow_name, destination_url, branch):
|
||||||
push = branch,
|
push = branch,
|
||||||
),
|
),
|
||||||
# Change path to the folder you want to publish publicly
|
# Change path to the folder you want to publish publicly
|
||||||
origin_files = glob(["**"], exclude = ["src/mongo/db/modules/**", "buildscripts/modules/**"]),
|
origin_files = glob(["**"], exclude = ["src/mongo/db/modules/**", "buildscripts/modules/**", ".github/workflows/**"]),
|
||||||
authoring = authoring.pass_thru("MongoDB <mongodb@mongodb.com>"),
|
authoring = authoring.pass_thru("MongoDB <mongodb@mongodb.com>"),
|
||||||
mode = "ITERATIVE",
|
mode = "ITERATIVE",
|
||||||
transformations = [
|
transformations = [
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue