Skip to content

Commit 659052c

Browse files
author
Yadan Wei
committed
Enable cron schedule
Signed-off-by: Yadan Wei <yadanwei@amazon.com>
1 parent 020e898 commit 659052c

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

.github/config/vllm-0.10.2-rayserve.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ release:
2626
public_registry: true
2727
private_registry: false
2828
enable_soci: true
29-
source_stage: private
30-
target_stage: gamma
29+
source_stage: beta # private for gamma test
30+
target_stage: release # gamma for gamma test

.github/workflows/vllm-rayserver-auto-release.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
name: vLLM_RAYSERVE_AUTO_RELEASE
22

33
on:
4-
pull_request:
5-
branches: [main]
6-
types: [opened, reopened, synchronize]
7-
paths:
8-
- "**vllm**"
9-
- "!docs/**"
10-
# schedule:
11-
# - cron: '00 18 * * 1' #Each Monday PST 10:00 am
4+
5+
schedule:
6+
# Runs at 10:00 AM PST/PDT on Monday and Wednesday
7+
# Note: GitHub Actions uses UTC time. PST is UTC-8, PDT is UTC-7
8+
# Using 17:00 UTC = 10:00 AM PDT (most of the year) / 9:00 AM PST (winter)
9+
- cron: '00 17 * * 1,3' # Monday and Wednesday at 10:00 AM PDT / 9:00 AM PST
1210

1311
permissions:
1412
contents: read

0 commit comments

Comments
 (0)