mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
vision hash update hasnt been updated since a long time and keeps failing when we try to do it now, so i want to remove the hash update until it gets fixed issue at #80745 Pull Request resolved: https://github.com/pytorch/pytorch/pull/80740 Approved by: https://github.com/seemethere
38 lines
1.2 KiB
YAML
38 lines
1.2 KiB
YAML
name: update-commit-hashes
|
|
|
|
on:
|
|
schedule:
|
|
# Every day at 12:37am
|
|
# Choose a random time near midnight 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 0 * * *
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-xla-commit-hash:
|
|
uses: ./.github/workflows/_update-commit-hash.yml
|
|
with:
|
|
repo-name: xla
|
|
branch: master
|
|
secrets:
|
|
MERGEBOT_TOKEN: ${{ secrets.MERGEBOT_TOKEN }}
|
|
PYTORCHBOT_TOKEN: ${{ secrets.GH_PYTORCHBOT_TOKEN }}
|
|
|
|
update-torchdynamo-commit-hash:
|
|
uses: ./.github/workflows/_update-commit-hash.yml
|
|
with:
|
|
repo-name: torchdynamo
|
|
branch: main
|
|
secrets:
|
|
MERGEBOT_TOKEN: ${{ secrets.MERGEBOT_TOKEN }}
|
|
PYTORCHBOT_TOKEN: ${{ secrets.GH_PYTORCHBOT_TOKEN }}
|
|
|
|
# keeps failing, issue at https://github.com/pytorch/pytorch/issues/80745
|
|
# update-vision-commit-hash:
|
|
# uses: ./.github/workflows/_update-commit-hash.yml
|
|
# with:
|
|
# repo-name: vision
|
|
# branch: main
|
|
# secrets:
|
|
# MERGEBOT_TOKEN: ${{ secrets.MERGEBOT_TOKEN }}
|
|
# PYTORCHBOT_TOKEN: ${{ secrets.GH_PYTORCHBOT_TOKEN }}
|