rocm_jax/.github/workflows/rocm-nightly-upstream-sync.yml
Workflow config file is invalid. Please check your config file: yaml: line 18: mapping values are not allowed in this context
2024-10-31 10:29:36 -05:00

19 lines
534 B
YAML

# Pulls the latest changes from upstream into main and opens a PR to merge
# them into rocm-main.
name: ROCm Nightly Upstream Sync
on:
schedule:
- cron: '0 6 * * 1-5'
jobs:
sync-main:
runs-on: ubuntu-latest
steps:
- run: gh repo sync rocm/jax -b main
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
open-sync-pr:
runs-on: ubuntu-latest
steps:
- run: gh pr create --repo rocm/jax --head main --base rocm-main --title "CI: $(date +%x) upstream sync" --body "Daily sync with upstream"