From 2cc10e5882b575dfcbe65eb8456084e71d6ed0b7 Mon Sep 17 00:00:00 2001 From: Huy Do Date: Wed, 13 Mar 2024 10:30:35 -0700 Subject: [PATCH] Add nightly trigger for executorch (#5003) I have the approval from ExecuTorch to onboard to Nova binary build workflows https://github.com/pytorch/executorch/pull/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. --- .github/workflows/trigger_nightly.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/trigger_nightly.yml b/.github/workflows/trigger_nightly.yml index 7154d80b4d..390f2693c2 100644 --- a/.github/workflows/trigger_nightly.yml +++ b/.github/workflows/trigger_nightly.yml @@ -19,6 +19,7 @@ on: - tensorrt - data - fbgemm + - executorch - all jobs: trigger: @@ -83,3 +84,11 @@ jobs: repository: pytorch/fbgemm token: ${{ secrets.GH_PYTORCHBOT_TOKEN }} path: fbgemm + - name: Trigger nightly executorch build + if: ${{ github.event_name == 'schedule' || inputs.domain == 'executorch' || inputs.domain == 'all' }} + uses: ./.github/actions/trigger-nightly + with: + ref: main + repository: pytorch/executorch + token: ${{ secrets.GH_PYTORCHBOT_TOKEN }} + path: executorch