Skip to content

Commit

Permalink
Update issue-comment.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
josxha authored Feb 20, 2024
1 parent 8fab71b commit 71e9553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/issue-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
const now = new Date();
const secondsSinceLabelAdded = (now - labelAddedDate) / 1000;
console.log(secondsSinceLabelAdded + "s")
return secondsSinceLabelAdded <= 30;
return secondsSinceLabelAdded > 30;
# only remove the label if the issue is not stale, this prevents that this
# action removes the label when the automatic reminder message gets sent.
- name: Remove `waiting for user response` label if exists
Expand Down

0 comments on commit 71e9553

Please sign in to comment.