Update queue times dataset #53448
This file contains 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: Update queue times dataset | |
on: | |
schedule: | |
# Run every 15 minutes | |
- cron: "*/15 * * * *" | |
defaults: | |
run: | |
working-directory: torchci | |
jobs: | |
update-queue-rockset: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: yarn install --frozen-lockfile | |
- run: yarn node scripts/updateQueueTimes.mjs | |
env: | |
ROCKSET_API_KEY: ${{ secrets.ROCKSET_API_KEY }} |