blob: 38c39b9f0633980910669a477db92c08b660c1e4 [file] [log] [blame]
syntax = "proto3";
package release_branches;
message Branch {
string testing_ref = 1;
string release_ref = 2;
string version = 3;
string recipes_ref = 4;
}
message Branches {
reserved 1, 2, 3; // stable, beta, dev
Branch master = 4;
reserved 5; // fuchsia_f1
map<string, Branch> fuchsia = 6;
Branch main = 7;
}