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 370a34e commit c64999cCopy full SHA for c64999c
github-actions/trigger-schedule/add-update-label-weekly/add-label.js
@@ -38,6 +38,7 @@ const threeDayCutoffTime = new Date();
38
threeDayCutoffTime.setDate(threeDayCutoffTime.getDate() - updatedByDays);
39
const sevenDayCutoffTime = new Date();
40
sevenDayCutoffTime.setDate(sevenDayCutoffTime.getDate() - commentByDays);
41
+sevenDayCutoffTime.setMinutes(sevenDayCutoffTime.getMinutes() + 10); // Set cutoff time to slightly less than 7 days ago
42
const fourteenDayCutoffTime = new Date();
43
fourteenDayCutoffTime.setDate(fourteenDayCutoffTime.getDate() - inactiveUpdatedByDays);
44
const upperLimitCutoffTime = new Date();
0 commit comments