1core.workflow( 2 name = "default", 3 origin = git.origin( 4 url = "rpc://googleplex-android/platform/external/pigweed", 5 ref = "upstream-main" 6 ), 7 destination = git.gerrit_destination( 8 url = "rpc://googleplex-android/platform/external/pigweed", 9 fetch = "main", 10 reviewers = ["cachinchilla@google.com", "hepler@google.com", 11 "matthewsedam@google.com"] 12 ), 13 origin_files = glob( 14 include = ["**"], 15 exclude = [ 16 "OWNERS", 17 "**/OWNERS", 18 "WORKSPACE_OWNERS" 19 ], 20 ), 21 authoring = authoring.pass_thru( 22 "Pigweed Developers <no-reply@google.com>" 23 ), 24 destination_files = glob( 25 include = ["**"], 26 exclude = [ 27 "copy.bara.sky", 28 "METADATA", 29 "MODULE_LICENSE_APACHE2", 30 "OWNERS" 31 ], 32 ), 33 mode = "SQUASH", 34 transformations = [], 35) 36