From f68981018dbb745b3c3ea9c32c64e25d01b2a9ee Mon Sep 17 00:00:00 2001 From: Elliot Waddington Date: Wed, 20 Nov 2024 10:31:29 +0100 Subject: [PATCH] feat: add tags to ChangeSummary (#287) This is the type that is listed on the changes page so will need to be added to the response in order to populate the change cards in the UI. --- changes.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changes.proto b/changes.proto index 0354f77..a7f8b03 100644 --- a/changes.proto +++ b/changes.proto @@ -577,6 +577,9 @@ message ChangeSummary { // 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; + + // User-defined tags associated with this change, will be populated via the CLI and not the UI. + map tags = 17; } // a complete Change with machine-supplied and user-supplied values