Skip to content

Commit 2cc10e5

Browse files
authored
Add nightly trigger for executorch (#5003)
I have the approval from ExecuTorch to onboard to Nova binary build workflows pytorch/executorch#2363. That covers wheel first. Once the PR lands, we can add a nightly trigger to start generating ExecuTorch wheels. I'm seeing pytorchbot with write access to the repo from `bunnylol oss pytorch/executorch`, so I think this is the only step needed.
1 parent 630817a commit 2cc10e5

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/trigger_nightly.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ on:
1919
- tensorrt
2020
- data
2121
- fbgemm
22+
- executorch
2223
- all
2324
jobs:
2425
trigger:
@@ -83,3 +84,11 @@ jobs:
8384
repository: pytorch/fbgemm
8485
token: ${{ secrets.GH_PYTORCHBOT_TOKEN }}
8586
path: fbgemm
87+
- name: Trigger nightly executorch build
88+
if: ${{ github.event_name == 'schedule' || inputs.domain == 'executorch' || inputs.domain == 'all' }}
89+
uses: ./.github/actions/trigger-nightly
90+
with:
91+
ref: main
92+
repository: pytorch/executorch
93+
token: ${{ secrets.GH_PYTORCHBOT_TOKEN }}
94+
path: executorch

0 commit comments

Comments
 (0)