Skip to content

Commit 1369cc7

Browse files
authored
Add nightly trigger for pytorch/pytorch (#4394)
Deprecating pytorch.warm package. Replacing nightly trigger of pytorch/pytorch via GHA. This should allow us close following chronos job: https://www.internalfb.com/chronos/job/chronos_gp_admin_client/9007207428341147 <!-- copilot:summary --> ### <samp>🤖 Generated by Copilot at 6f26233</samp> Add a new workflow to trigger nightly builds for pytorch core. The workflow uses a custom action to run the `pytorch` workflow in the `pytorch/pytorch` repository with the `viable/strict` branch.
1 parent d8b1d7c commit 1369cc7

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Trigger nightly builds for pytorch core
2+
3+
on:
4+
schedule:
5+
# every night at 7:30AM UTC, 3:30AM EST, 0:30AM PST
6+
- cron: 30 7 * * *
7+
workflow_dispatch:
8+
9+
jobs:
10+
trigger:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 60
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Trigger nightly core build
16+
uses: ./.github/actions/trigger-nightly
17+
with:
18+
ref: viable/strict
19+
repository: pytorch/pytorch
20+
token: ${{ secrets.GH_PYTORCHBOT_TOKEN }}
21+
path: pytorch

0 commit comments

Comments
 (0)