commit 1ff5a2973771cba5d39080df543360fb46c66d92
parent 7c254eefd96db3e4e0c43a459fafb172e1ee70c2
Author: iostpa <iostpa@iostpa.com>
Date: Thu, 11 Jun 2026 18:08:33 +0300
I forgot to switch back the placeholders
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/index.js b/src/index.js
@@ -26,7 +26,7 @@ const privateKey = fs.readFileSync(
'utf8'
);
const secret = process.env.WEBHOOK_SECRET;
-export const numberOfDays = 0; // 3
+export const numberOfDays = 3;
Sentry.init({
dsn: sentryDsn,
@@ -80,7 +80,7 @@ app.octokit.log.debug(`Authenticated as '${data.name}'`);
// Check if a low priority pull request has been in the database for over 3 days
let job = new CronJob(
- '* * * * *', // cronTime 0 * * * *
+ '0 * * * *', // cronTime 0 * * * *
async function () {
let date = new Date();
let conn;