diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-02-06 16:35:59 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-06-05 09:12:45 +0200 |
commit | a376770e0a8ed304660d911dfc4448aeb8c814b0 (patch) | |
tree | 1d29153a38480d514cb716d53e104502edd703d5 /mod/module.cli | |
parent | 976d5d4c0c8b8b9eeaf2f386e72e2db06e83ac41 (diff) |
Generate JWT
Diffstat (limited to 'mod/module.cli')
-rw-r--r-- | mod/module.cli | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/mod/module.cli b/mod/module.cli index 5133935..1e266e4 100644 --- a/mod/module.cli +++ b/mod/module.cli @@ -815,11 +815,29 @@ namespace brep { }; - class ci_github: ci_start, build, build_db, handler + // @@ TODO Is etc/brep-module.conf updated manually? + // + class ci_github: ci_start, ci_cancel, + build, build_db, + handler, + openssl_options { // GitHub CI-specific options (e.g., request timeout when invoking // GitHub APIs). // + + size_t ci-github-app-id + { + "<id>", + "The GitHub App ID. Found in the app's settings on GitHub." + } + + path ci-github-app-private-key + { + "<path>", + "The private key used during GitHub API authentication. Created in + the GitHub app's settings." + } }; class upload: build, build_db, build_upload, repository_email, handler |