From d2b668b4da9409bb06237b3613ef7a85dcc8d172 Mon Sep 17 00:00:00 2001 From: Remco Vermeulen Date: Wed, 29 Nov 2023 12:23:01 -0800 Subject: [PATCH] Correct comment --- scripts/release/webhook-handler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release/webhook-handler.js b/scripts/release/webhook-handler.js index 8016cb256b..6197bedb48 100644 --- a/scripts/release/webhook-handler.js +++ b/scripts/release/webhook-handler.js @@ -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"] };