diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2025-01-17 17:06:23 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2025-01-20 11:29:59 +0200 |
commit | 4644db4ad07800637e326d2b971d105cd037b27f (patch) | |
tree | f56ff1a9a5272fb5aa1b1fe475da61e4db28ed00 /mod/mod-ci-github-service-data.hxx | |
parent | b1f1ae8a10596199e130637eecf2611afdd57cb1 (diff) |
ci-github: Add output, details_url to building conclusion check run
Diffstat (limited to 'mod/mod-ci-github-service-data.hxx')
-rw-r--r-- | mod/mod-ci-github-service-data.hxx | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/mod/mod-ci-github-service-data.hxx b/mod/mod-ci-github-service-data.hxx index 50bb49d..5d36696 100644 --- a/mod/mod-ci-github-service-data.hxx +++ b/mod/mod-ci-github-service-data.hxx @@ -33,10 +33,17 @@ namespace brep optional<result_status> status; // Only if state is built & synced. - // Note: never serialized (only used to pass information to the GraphQL - // functions). + // Note: these are never serialized (only used to pass information to the + // GraphQL functions). // - optional<string> details_url; + struct description_type + { + string title; + string summary; + }; + + optional<string> details_url; + optional<description_type> description; string state_string () const |