2024-01-28 10:22:07 +00:00
|
|
|
name: Generate legacy ckpts
|
2023-02-13 17:34:15 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master, "release/*"]
|
|
|
|
pull_request:
|
|
|
|
branches: [master, "release/*"]
|
2023-09-25 12:34:41 +00:00
|
|
|
types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped
|
2023-02-13 17:34:15 +00:00
|
|
|
paths:
|
|
|
|
- ".github/workflows/ci-checkpoints.yml"
|
2024-01-28 10:22:07 +00:00
|
|
|
- ".github/workflows/_legacy-checkpoints.yml"
|
2023-12-14 13:49:43 +00:00
|
|
|
- "requirements/ci.txt"
|
2024-01-28 10:22:07 +00:00
|
|
|
- "requirements/pytorch/*.txt"
|
|
|
|
- "tests/legacy/*"
|
2023-02-13 17:34:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
try-legacy-checkpoints:
|
|
|
|
uses: ./.github/workflows/_legacy-checkpoints.yml
|
|
|
|
with:
|
|
|
|
push_to_s3: false
|
|
|
|
create_pr: false
|
|
|
|
secrets: inherit
|