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 7460ef0 commit 2bf336fCopy full SHA for 2bf336f
.github/workflows/close-innactive-issues-without-repro.yaml
@@ -64,7 +64,7 @@ jobs:
64
65
# Check if at least 168 hours have passed since the label was added
66
current_time=$(date --utc +'%Y-%m-%dT%H:%M:%SZ')
67
- is_week_old=$(dateutils.ddiff "$label_added_at" "$current_time" -f '%H:%M:%S' | awk -F: '{if ($1 >= 168) print "yes"; else print "no";}')
+ is_week_old=$(dateutils.ddiff "$label_added_at" "$current_time" -f '%H:%M:%S' | awk -F: '{if ($1 >= 30) print "yes"; else print "no";}')
68
69
if [ "$is_week_old" = "yes" ] && [ "$has_activity_after_label" = "0" ]; then
70
echo "Commenting and closing issue $issue..."
0 commit comments