syntax = "proto3"; | |
package release_branches; | |
message Branch { | |
string testing_ref = 1; | |
string release_ref = 2; | |
string version = 3; | |
string recipes_ref = 4; | |
} | |
message Branches { | |
Branch stable = 1; | |
Branch beta = 2; | |
reserved 3; // dev | |
Branch master = 4; | |
reserved 5; // fuchsia_f1 | |
map<string, Branch> fuchsia = 6; | |
Branch main = 7; | |
} |