diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-02-06 16:35:59 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-10-15 09:05:27 +0200 |
commit | 1b728e3f3f2c9588b4535cf92e18139ce8eb38c8 (patch) | |
tree | c027b07f86bc3e7c0181514d740fdac8aab0f39e /mod/module.cli | |
parent | c93a8f53a19b4946ad867082bc3b48fd694244f0 (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 f0efed8..e3091be 100644 --- a/mod/module.cli +++ b/mod/module.cli @@ -845,11 +845,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 |