Upstream CI Watcher #1963
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upstream CI Watcher | |
on: | |
schedule: | |
- cron: '0 * * * *' | |
workflow_dispatch: | |
jobs: | |
upstream-ci-watcher: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Change owners for cleanup | |
run: | | |
docker run --rm -v "./:/rocm-jax" ubuntu /bin/bash -c "chown -R $UID /rocm-jax/* || true" | |
- name: Checkout plugin repo | |
uses: actions/checkout@v4 | |
- name: Run watcher script | |
run: | | |
ci/upstream_ci_watcher.py \ | |
--teams-url ${{ secrets.MS_TEAMS_WEBHOOK_URL }} \ | |
--gh-token ${{ secrets.GITHUB_TOKEN }} | |