diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-10-28 11:14:21 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-10-30 08:27:09 +0200 |
commit | 1067cfe0f0ceea67baf013b9e15219b6f143f7e8 (patch) | |
tree | 50eedb4d1ccb707d9436c1811c3c038b98ee1174 /mod/mod-ci-github-service-data.hxx | |
parent | 5d8102e5f507ffa55e2e1f98a3c36c8a74edc049 (diff) |
Add event_node_id (CS/PR) to service data
Diffstat (limited to 'mod/mod-ci-github-service-data.hxx')
-rw-r--r-- | mod/mod-ci-github-service-data.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/mod-ci-github-service-data.hxx b/mod/mod-ci-github-service-data.hxx index ae1506d..27d4791 100644 --- a/mod/mod-ci-github-service-data.hxx +++ b/mod/mod-ci-github-service-data.hxx @@ -92,6 +92,8 @@ namespace brep string repository_node_id; // GitHub-internal opaque repository id. + string event_node_id; // check_suite/pull_request node id. + // The following two are only used for pull requests. // // @@ TODO/LATER: maybe put them in a struct? @@ -149,6 +151,7 @@ namespace brep timestamp iat_expires_at, uint64_t installation_id, string repository_node_id, + string event_node_id, kind_type kind, bool pre_check, bool re_request, @@ -162,6 +165,7 @@ namespace brep timestamp iat_expires_at, uint64_t installation_id, string repository_node_id, + string event_node_id, kind_type kind, bool pre_check, bool re_request, |