Skip to content

Commit a7fa8d2

Browse files
author
Yadan Wei
committed
change workflow run condition to test'
' Signed-off-by: Yadan Wei <yadanwei@amazon.com>
1 parent 6ef6e10 commit a7fa8d2

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

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

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

33
on:
4+
# schedule run must be on the default branch
5+
# https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#schedule
6+
# schedule:
7+
# # Runs at 10:00 AM PST/PDT on Monday and Wednesday
8+
# # Note: GitHub Actions uses UTC time. PST is UTC-8, PDT is UTC-7
9+
# # Using 17:00 UTC = 10:00 AM PDT (most of the year) / 9:00 AM PST (winter)
10+
# - cron: '00 17 * * 1,3' # Monday and Wednesday at 10:00 AM PDT / 9:00 AM PST
11+
12+
pull_request:
13+
branches: [main]
14+
types: [opened, reopened, synchronize]
15+
paths:
16+
- "**vllm**"
17+
- "!docs/**"
418

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
1019

1120
permissions:
1221
contents: read

0 commit comments

Comments
 (0)