Skip to content
Merged
Changes from 1 commit
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 src/VCS/Adapter/Git/GitHub.php
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ protected function generateAccessToken(string $privateKey, ?string $appId): void
$appIdentifier = $appId;

$iat = time();
$exp = $iat + 10 * 60;
$exp = $iat + 9 * 60;
Comment thread
Meldiron marked this conversation as resolved.
Outdated
Comment thread
docimin marked this conversation as resolved.
Outdated
$payload = [
'iat' => $iat,
'exp' => $exp,
Expand Down
Loading