-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopy.bara.sky
More file actions
30 lines (27 loc) · 782 Bytes
/
copy.bara.sky
File metadata and controls
30 lines (27 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
url = "https://github.com/salesforce/rules_spring"
core.workflow(
name = "default",
origin = git.origin(
url = url,
ref = "main",
),
origin_files = glob(["examples/**"], exclude = [
"examples/README.md",
"examples/kotlinapp/README.md",
]),
destination = git.destination(
url = "file:///Users/plaird/dev/rules_spring_demoapp",
fetch = "main",
push = "copybara",
),
destination_files = glob(["examples/**"], exclude = [
"examples/README.md",
"examples/kotlinapp/README.md",
]),
authoring = authoring.pass_thru("Default email <plaird@salesforce.com>"),
transformations = [
patch.apply(
patches = ["rules_spring_demoapp.patch"]
),
],
)