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

Commit 3b8e3f4

Browse files
Updating workflow to send reminder and removing time dependency.
1 parent f65a8d8 commit 3b8e3f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/heretto-reminder.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
with:
4242
script: |
4343
const { labels } = ${{ steps.pr_info.outputs }};
44-
const reminderLabel = 'reminder sent';
44+
const reminderLabel = 'reminder sent';
45+
let sendReminder = false;
4546
if (!Array.isArray(labels) || labels.length === 0) {
4647
return { sendReminder: true };
4748
} else if (labels.includes(reminderLabel)) {

0 commit comments

Comments
 (0)