0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-21 12:39:08 +01:00
Commit Graph

15 Commits

Author SHA1 Message Date
Mathias Stearn
47b4e3b26c SERVER-97064 .clang-format and .clang-tidy.in should be owned by Server Programability team (#29148)
GitOrigin-RevId: 9cdd447cccd0f7815514d0492490348c7cd21e7b
2024-11-14 14:45:33 +00:00
Juan Gu
69008b792e SERVER-93976 Remove deps and configs obsoleted by Ruff (#28854)
GitOrigin-RevId: f59507b7a357a5f51ad59ff40b9db7ab11ae63f1
2024-11-12 22:07:52 +00:00
Dan Larkin-York
3a3a029346 SERVER-95073 Replace list of individuals with group for global onwership (#27329)
GitOrigin-RevId: bfab83c4bf9df042763860c300c0a4b1c3cb01e3
2024-09-20 20:43:29 +00:00
Mikhail Shchatko
f9fdc7f82f SERVER-94187 Switch git ssh to https in copybara (#27049)
GitOrigin-RevId: 25a14df75380e62a0b451e1f3c7d37f59a946fff
2024-09-16 16:01:16 +00:00
Mikhail Shchatko
fb91aae179 SERVER-94827 Update copy.bara.sky code owners (#27093)
GitOrigin-RevId: fcbd02c475c8f0c0d49b080cd0cf4a7746549eee
2024-09-16 14:33:23 +00:00
Alexander Neben
76fa3d6f89 SERVER-94534 Added owning team to codeowners (#26886)
GitOrigin-RevId: 79590effe86c471cc15d91c6785599ec2085d7c0
2024-09-10 00:01:20 +00:00
Zack Winter
153ad17864 SERVER-94015 Set devprod-build as the owner of .gitignore (#26502)
GitOrigin-RevId: c3fa165663ffbfc2e119cb4b923b4f756fee3702
2024-08-26 18:05:34 +00:00
Alexander Neben
01fa499a63 SERVER-93820 Remove visemet as codeowner (#26349)
GitOrigin-RevId: 071729109abcc6569e759c7a3ac0a28aaefbc95b
2024-08-21 02:07:17 +00:00
Alexander Neben
a573a397ca SERVER-93169 Added another engineer to the default owners (#25757)
GitOrigin-RevId: 33304d8b34f68de64713ee5468d82ace34987d5e
2024-08-05 17:44:19 +00:00
Alexander Neben
5a60c66395 SERVER-93169 Added more server codeowners (#25725)
GitOrigin-RevId: fd20e506f5ec7d9cff3a120fb2f5155f54e2be33
2024-08-03 01:07:42 +00:00
Alexander Neben
73c2d9e977 SERVER-90928 Remove lines other than commit title from syncing (#22589)
# Issue

Remove lines other than commit title from syncing

# Description

SERVER-90928 Remove lines other than commit title from syncing to the
public repo

# Testing

This was tested locally. I tested on the commits in this PR and it seems
to be synced correctly. The staging file I used was
```
# This configuration is for migrating code from one Git repository to another using Copybara.
# It selectively copies content, excluding specific paths and preserving authorship.

# To test locally
sourceUrl = "/Users/alexander.neben/workspace/mongo2"
destinationUrl = "/Users/alexander.neben/workspace/mongodb-mongo"

# sourceUrl = "git@github.com:10gen/mongo.git"
# destinationUrl = "git@github.com:10gen/mongo-copybara.git"

core.workflow(
    name = "default",
    origin = git.origin(
        url = sourceUrl,
        ref = "IamXander/prune_commit",
    ),
    destination = git.destination(
        url = destinationUrl,
        fetch = "IamXander/prune_commit",
        push = "IamXander/prune_commit",
    ),
    # Change path to the folder you want to publish publicly
    origin_files = glob(["**"], exclude = ["src/mongo/db/modules/**"]),
    authoring = authoring.pass_thru("MongoDB <mongodb@mongodb.com>"),
    mode = "ITERATIVE",
    # Change the path here to the folder you want to publish publicly
    transformations = [
        metadata.scrubber("(^.*?)\n((\n|.)*)", replacement = "$1"),
    ],
)
```

Running git log on `/Users/alexander.neben/workspace/mongodb-mongo`
returns the following
```
commit 8a4879557893ae942f793ad707d56e255bebc72d (HEAD -> IamXander/prune_commit)
Author: Alex Neben <alex.neben@mongodb.com>
Date:   Tue May 28 08:55:38 2024 -0700

    fixes

    GitOrigin-RevId: 3ffa6b95d44ec3fef7e715a3f24652966861f4e1

commit 66cdb3631be92ced2123c7e3fab39e24bed91b2b
Author: Alex Neben <alex.neben@mongodb.com>
Date:   Tue May 28 08:50:07 2024 -0700

    SERVER-90928 Remove lines other than commit title from syncing

    GitOrigin-RevId: 7d90f0f69a17943fb68ba23e2f135d08c00c4943

commit 0063834a4fa519727cc6b816995ea56d9b3328fe
Author: Alex Neben <alex.neben@mongodb.com>
Date:   Tue May 28 08:12:24 2024 -0700

    SERVER-XYZ asdasdkjfhaskdf akjdhkjashdkjashd example

    GitOrigin-RevId: 298831cd1d55319ea368fdd2f1dc604368d94889

commit fc7f29486d762a740c3ebe01c3b7d69a477abe75
Author: Alex Neben <alex.neben@mongodb.com>
Date:   Fri May 24 13:55:21 2024 -0700

    prune commit message

    GitOrigin-RevId: 43692434bf664fe593ee7eb5f53372ca331ecec9
```

Which shows no data after the newline. It also does not include
enterprise code.

GitOrigin-RevId: f78828e412e3ac510c6e56feb541146c688b7603
2024-05-28 23:12:16 +00:00
adriangzz
81f94070df SERVER-90882 Make server security the owner of sbom.json (#22583)
GitOrigin-RevId: cad3569d87341b242ad031672e639ac0c3264e8e
2024-05-24 21:20:40 +00:00
Trevor
bcdcac21c2 SERVER-88994 Change OWNERS.yml files to use github teams (#20792)
GitOrigin-RevId: c175561a2937b1b9286a7b0bc0402d020d03bb25
2024-04-04 21:40:28 +00:00
Trevor
3f6bcaec41 SERVER-88711 Generate .github/CODEOWNERS from OWNERS.yml files (#20694)
GitOrigin-RevId: 1f7dc5dd5e91cc885647063b888d4d9c2f61f43c
2024-04-04 18:21:52 +00:00
Alexander Neben
8548333ea0 SERVER-88583 OWNERS format proposal (#20460)
GitOrigin-RevId: dc8d4d59a474ca4d989f8acb64c1214b762f45e0
2024-03-28 19:53:00 +00:00