forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 908 Bytes
/
weekly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: weekly
on:
schedule:
# Mondays at 7:37am UTC = 12:27am PST
# Choose a random time near midnight PST because it may be delayed if there are high loads
# See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
- cron: 37 7 * * 1
workflow_dispatch:
jobs:
update-xla-commit-hash:
uses: ./.github/workflows/_update-commit-hash.yml
with:
repo-name: xla
branch: master
secrets:
UPDATEBOT_TOKEN: ${{ secrets.UPDATEBOT_TOKEN }}
PYTORCHBOT_TOKEN: ${{ secrets.GH_PYTORCHBOT_TOKEN }}
update-triton-commit-hash:
uses: ./.github/workflows/_update-commit-hash.yml
with:
repo-owner: openai
repo-name: triton
branch: main
pin-folder: .ci/docker/ci_commit_pins
secrets:
UPDATEBOT_TOKEN: ${{ secrets.UPDATEBOT_TOKEN }}
PYTORCHBOT_TOKEN: ${{ secrets.GH_PYTORCHBOT_TOKEN }}