We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff193da commit d2b668bCopy full SHA for d2b668b
scripts/release/webhook-handler.js
@@ -22,7 +22,7 @@ function createJwtToken() {
22
const claims = {
23
// Issue 60 seconds in the past to account for clock drift.
24
iat: Math.floor(Date.now() / 1000) - 60,
25
- // The token is valid for 1 minutes
+ // The token is valid for 1 minute(s).
26
exp: Math.floor(Date.now() / 1000) + (1 * 60),
27
iss: process.env["GITHUB_APP_ID"]
28
};
0 commit comments