You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gateway/proto/gateway.proto
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -41,14 +41,17 @@ enum Strategy {
41
41
MERGE=3;
42
42
}
43
43
44
-
// Change represents a set of related code changes identified by one or more IDs from a particular code change provider, like Github Pull Requests.
44
+
// Change represents a set of related code changes identified by one or more URIs from a particular code change provider, like Github Pull Requests.
45
45
messageChange {
46
-
// The code change provider (e.g., "github", "gerrit", "phabricator").
46
+
// The code change provider ID that maps to a registered provider (e.g., "github", "github-enterprise", "phabricator").
47
47
stringsource=1;
48
-
// List of change IDs, in a format specific to the code change provider, that should be landed together. SubmitQueue guarantees that the changes are landed in the order of the list,
49
-
// and no other changes are landed in between. SubmitQueue does not guarantee that each change is individually valid, but produces a special validity
50
-
// marker on such changes. The user is responsible to include all changes in a change stack in the order of the list, starting from the earlist change.
51
-
repeatedstringids=2;
48
+
// List of change URIs that should be landed together. The format is provider-specific:
0 commit comments