diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2025-02-11 15:45:52 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2025-02-12 11:11:25 +0200 |
commit | 6ff3737c632f4d77e3d60d9e13c23ceed5ea3468 (patch) | |
tree | f9803095f92b7fbcb9cf8a0ed4150bfb672e6054 /mod/mod-ci-github-gh.hxx | |
parent | 217b2780813819bbad5c6eed41997d8e1e85fa8c (diff) |
ci-github: Store App id as uint64_t
Diffstat (limited to 'mod/mod-ci-github-gh.hxx')
-rw-r--r-- | mod/mod-ci-github-gh.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/mod-ci-github-gh.hxx b/mod/mod-ci-github-gh.hxx index 91f5bfe..5f6e5b7 100644 --- a/mod/mod-ci-github-gh.hxx +++ b/mod/mod-ci-github-gh.hxx @@ -66,7 +66,7 @@ namespace brep size_t check_runs_count; optional<string> conclusion; - string app_id; + uint64_t app_id; explicit gh_check_suite_ex (json::parser&); @@ -97,7 +97,7 @@ namespace brep string details_url; gh_check_suite check_suite; - string app_id; + uint64_t app_id; explicit gh_check_run_ex (json::parser&); @@ -129,7 +129,7 @@ namespace brep // simplicity we emulate check_suite and check_run by storing the app-id // webhook query parameter here. // - string app_id; + uint64_t app_id; explicit gh_pull_request (json::parser&); @@ -256,7 +256,7 @@ namespace brep // emulate check_suite and check_run by storing the app-id webhook query // parameter here. // - string app_id; + uint64_t app_id; explicit gh_push_event (json::parser&); |