Skip to content

Commit

Permalink
Correct comment
Browse files Browse the repository at this point in the history
  • Loading branch information
rvermeulen committed Nov 29, 2023
1 parent ff193da commit d2b668b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release/webhook-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function createJwtToken() {
const claims = {
// Issue 60 seconds in the past to account for clock drift.
iat: Math.floor(Date.now() / 1000) - 60,
// The token is valid for 1 minutes
// The token is valid for 1 minute(s).
exp: Math.floor(Date.now() / 1000) + (1 * 60),
iss: process.env["GITHUB_APP_ID"]
};
Expand Down

0 comments on commit d2b668b

Please sign in to comment.