// Copyright (c) 2022, the Dart project authors. All rights reserved. Use of | |
// this source code is governed by a BSD-style license that can be found in the | |
// LICENSE file. | |
syntax = "proto3"; | |
package recipes.dart.release.merge; | |
message Merge { | |
// The source ref (e.g. "refs/heads/beta") or commit SHA to merge from. | |
string from_ref = 1; | |
// The target ref (e.g. "refs/heads/stable") to merge to. | |
string to_ref = 2; | |
} |