mirror of
https://github.com/peridotbuild/peridot.git
synced 2024-12-09 04:46:27 +00:00
20 lines
652 B
Plaintext
20 lines
652 B
Plaintext
core.workflow(
|
|
name = "default",
|
|
origin = git.github_origin(
|
|
url = "https://github.com/googleapis/googleapis",
|
|
ref = "a85e6dfebd30932fbf8bfb1ce5600b2d6d645e9b",
|
|
),
|
|
destination = folder.destination(),
|
|
origin_files = glob([
|
|
"google/api/*.proto",
|
|
"google/longrunning/*.proto",
|
|
"google/rpc/*.proto",
|
|
"LICENSE",
|
|
]),
|
|
destination_files = glob(["third_party/googleapis/**"], exclude = ["README_INTERNAL.txt"]),
|
|
authoring = authoring.pass_thru("peridot-copybara <peridot+copybara@lists.resf.org>"),
|
|
transformations = [
|
|
core.move("", "third_party/googleapis"),
|
|
],
|
|
)
|