Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bot-components/GitHub_app.ml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ let make_jwt ~key ~app_id =
let issuedAt = Unix.time () |> Int.of_float in
let payload =
f {|{ "iat": %d, "exp": %d, "iss": %d }|} issuedAt
(issuedAt + (55 * 10))
(issuedAt + (60 * 8))
app_id
in
match (base64 header, base64 payload) with
Expand Down