diff options
| author | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2025-02-11 15:07:35 -0300 |
|---|---|---|
| committer | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2025-02-11 15:07:35 -0300 |
| commit | 4cb8841196d0625dfa3825aa326f071cd27c7b8b (patch) | |
| tree | 1682a647d4463397c119183369ae6f750d5fdcff /copy.bara.sky | |
| parent | aa03c6362cbaa767638e6eed9b031d86dd2643d1 (diff) | |
| parent | 8f0827553e09872941945a093b647a4211a9db7f (diff) | |
Update upstream source from tag 'upstream/6.0.0'master
Update to upstream version '6.0.0'
with Debian dir 5604a80ec1c96ca76f25f40d78e6ef855abec322
Diffstat (limited to 'copy.bara.sky')
| -rw-r--r-- | copy.bara.sky | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/copy.bara.sky b/copy.bara.sky deleted file mode 100644 index 8a54633060c..00000000000 --- a/copy.bara.sky +++ /dev/null @@ -1,33 +0,0 @@ -# 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 = "/path/to/source" -# destinationUrl = "/path/to/dest" - -sourceUrl = "git@github.com:10gen/mongo.git" -destinationUrl = "git@github.com:mongodb/mongo.git" - -core.workflow( - name = "default", - origin = git.origin( - url = sourceUrl, - ref = "v6.0", - ), - destination = git.destination( - url = destinationUrl, - fetch = "v6.0", - push = "v6.0", - ), - # 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", - transformations = [ - # (^.*?) - matches the first line (without the newline char) - # \n - matches the first newline (or nothing at all if there is no newline). If there is no match then nopthing happens - # ((\n|.)*) - matches everything after - # Overall, this copies only the first line of the commit rather than the body - metadata.scrubber("(^.*?)\n((\n|.)*)", replacement = "$1"), - ], -) |
