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