diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-05-10 14:15:25 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-10-15 09:05:28 +0200 |
commit | dc3a911495292fc6eda318fac32f5606ffb12568 (patch) | |
tree | 4cda19118e7e29230c918fa137beb664b3d288db /mod/mod-ci-github-service-data.cxx | |
parent | a515e647cbba6a2bdb2b6fb764b02fa23b7d2652 (diff) |
Post-review changes
Diffstat (limited to 'mod/mod-ci-github-service-data.cxx')
-rw-r--r-- | mod/mod-ci-github-service-data.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/mod-ci-github-service-data.cxx b/mod/mod-ci-github-service-data.cxx index 83e952b..f1d5fd5 100644 --- a/mod/mod-ci-github-service-data.cxx +++ b/mod/mod-ci-github-service-data.cxx @@ -38,7 +38,7 @@ namespace brep installation_id = p.next_expect_member_number<uint64_t> ("installation_id"); - repository_id = p.next_expect_member_string ("repository_id"); + repository_node_id = p.next_expect_member_string ("repository_id"); head_sha = p.next_expect_member_string ("head_sha"); p.next_expect_member_array ("check_runs"); @@ -75,7 +75,7 @@ namespace brep : warning_success (ws), installation_access (move (iat_tok), iat_ea), installation_id (iid), - repository_id (move (rid)), + repository_node_id (move (rid)), head_sha (move (hs)) { } @@ -100,7 +100,7 @@ namespace brep s.end_object (); s.member ("installation_id", installation_id); - s.member ("repository_id", repository_id); + s.member ("repository_id", repository_node_id); s.member ("head_sha", head_sha); s.member_begin_array ("check_runs"); |