Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit d0b3cff

Browse files
Updating workflow to send reminder and removing time dependency.
1 parent c520985 commit d0b3cff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/heretto-reminder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
const { labels } = ${{ steps.pr_info.outputs }};
4444
const reminderLabel = 'reminder sent';
4545
46-
if (!labels) { // Check if labels is undefined or null
46+
if (!labels || labels.length === 0) {
4747
return { sendReminder: true }; // send reminder if the time threshold is passed, even without labels.
4848
}
4949
if (labels.includes(reminderLabel)) {

0 commit comments

Comments
 (0)