From f37e96d6ed9b0780d8eeb58726bf2218f9d34642 Mon Sep 17 00:00:00 2001 From: Elliot Waddington Date: Wed, 30 Oct 2024 13:43:21 +0100 Subject: [PATCH] feat: add repo field to Change (#279) --- changes.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/changes.proto b/changes.proto index 8cd1516..8b93ac5 100644 --- a/changes.proto +++ b/changes.proto @@ -575,6 +575,9 @@ message ChangeSummary { // Quick description of the change. // Example: "upgrade of the database to get access to the new contoso management processor" string description = 14; + + // Repo information; can be an empty string. CLI attempts auto-population, but users can override. Not necessarily a URL. The UI will be responsible for any formatting/shortnening/sprucing up should it be required. + string repo = 16; } // a complete Change with machine-supplied and user-supplied values @@ -709,6 +712,9 @@ message ChangeProperties { // The code changes of this change for calculating the change's risks. string codeChanges = 14; + + // Repo information; can be an empty string. CLI attempts auto-population, but users can override. Not necessarily a URL. The UI will be responsible for any formatting/shortnening/sprucing up should it be required. + string repo = 15; } ////////////////////////////