Skip to content

Commit 4f61e71

Browse files
committed
ci: Shorten the release interval to 19 days
Since there is some user intervention required for the scheduled release, this adds a 2 day buffer in case the buttons weren't clicked immediately last time. Signed-off-by: ckyrouac <[email protected]>
1 parent d35d235 commit 4f61e71

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/scheduled-release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ jobs:
4848
4949
echo "Days since last release: $DAYS_SINCE_RELEASE"
5050
51-
# Release if it's been at least 21 days (3 weeks)
52-
if [ $DAYS_SINCE_RELEASE -ge 21 ]; then
51+
# Release if it's been at least 19 days
52+
# This allows a couple days of buffer
53+
# in case the previous release didn't happen immediately
54+
if [ $DAYS_SINCE_RELEASE -ge 19 ]; then
5355
echo "should_release=true" >> $GITHUB_OUTPUT
5456
else
5557
echo "should_release=false" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)