Skip to content

Commit 99a60ff

Browse files
committed
chore: change Docker tag monitoring frequency to daily
- Update docker-tag-monitor.yml to run once daily at 6 AM UTC instead of hourly - Reduce sleep delay from 1s to 0.5s since daily checks have less urgency - Update documentation to reflect daily monitoring schedule This reduces GitHub Actions usage while still ensuring missing Docker images are detected and resolved within 24 hours of tag creation.
1 parent 5691748 commit 99a60ff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/docker-tag-monitor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Docker Tag Monitor
22

33
on:
44
schedule:
5-
# Run every hour to check for missing Docker images
6-
- cron: '0 * * * *'
5+
# Run once daily at 6 AM UTC to check for missing Docker images
6+
- cron: '0 6 * * *'
77
workflow_dispatch:
88
inputs:
99
reason:
@@ -43,8 +43,8 @@ jobs:
4343
echo "✅ Docker image exists for tag: $tag"
4444
fi
4545
46-
# Small delay to avoid rate limiting
47-
sleep 1
46+
# Small delay to avoid rate limiting (can be shorter since it's daily)
47+
sleep 0.5
4848
done
4949
5050
# Check if latest tag is up to date

0 commit comments

Comments
 (0)