SERVER-111300 Allow overrides through merge queue (#41664) (#41818)

GitOrigin-RevId: 61978f72d77c4909e7160a9f5352a785a81f078c
This commit is contained in:
Trevor Guidry 2025-09-29 10:48:51 -05:00 committed by MongoDB Bot
parent 776544f14d
commit b27023d431
3 changed files with 5 additions and 1 deletions

1
.github/CODEOWNERS vendored
View File

@ -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

3
.github/OWNERS.yml vendored
View File

@ -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

View File

@ -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 = [