Nightly Docker Update #1330
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: Nightly Docker Update | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| workflow_dispatch: | |
| concurrency: | |
| group: nightly-docker-update | |
| cancel-in-progress: true | |
| jobs: | |
| open_update_pr: | |
| permissions: | |
| actions: write | |
| checks: write | |
| contents: write | |
| id-token: write | |
| issues: write | |
| pull-requests: write | |
| statuses: write | |
| if: github.repository == 'apache/tvm' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Open PR to update Docker images | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| set -eux | |
| python ci/scripts/jenkins/open_docker_update_pr.py |