Skip to content

Commit 03072a7

Browse files
committed
[ci] Fix prereleases reusable workflow
Turns out I had configured the reusable workflow with the wrong `on` command. Also removes the workflow_dispatch config from the nightly workflow as that was not meant to be triggered manually. ghstack-source-id: 426d072 Pull Request resolved: #30498
1 parent a6b5ed0 commit 03072a7

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.github/workflows/runtime_prereleases.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
name: (Runtime) Publish Prereleases
22

33
on:
4-
workflow_dispatch:
4+
workflow_call:
55
inputs:
66
commit_sha:
77
required: true
88
default: ''
99
type: string
1010
release_channel:
1111
required: true
12-
type: choice
13-
options:
14-
- stable
15-
- experimental
12+
type: string
1613
dist_tag:
1714
required: true
1815
type: string

.github/workflows/runtime_prereleases_nightly.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ on:
44
schedule:
55
# At 10 minutes past 16:00 on Mon, Tue, Wed, Thu, and Fri
66
- cron: 10 16 * * 1,2,3,4,5
7-
workflow_dispatch:
8-
inputs:
9-
prerelease_commit_sha:
10-
required: false
117

128
env:
139
TZ: /usr/share/zoneinfo/America/Los_Angeles

0 commit comments

Comments
 (0)