From 3bf0f145bb129f56ff34a0f849945b545a7d4922 Mon Sep 17 00:00:00 2001 From: Philip Hyunsu Cho Date: Sat, 3 Jun 2023 13:12:12 -0700 Subject: [PATCH] Update update_rapids.yml --- .github/workflows/update_rapids.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update_rapids.yml b/.github/workflows/update_rapids.yml index 83dd19b35..022639a1f 100644 --- a/.github/workflows/update_rapids.yml +++ b/.github/workflows/update_rapids.yml @@ -2,7 +2,7 @@ name: update-rapids on: schedule: - - cron: "0 7 * * *" # Run once daily + - cron: "20 20 * * *" # Run once daily permissions: contents: read # to fetch code (actions/checkout) @@ -31,7 +31,10 @@ jobs: bash tests/buildkite/update-rapids.sh - name: Create Pull Request uses: peter-evans/create-pull-request@v5 - add-paths: tests/buildkite - branch: create-pull-request/update-rapids - base: master if: github.ref == 'refs/heads/master' + with: + add-paths: | + tests/buildkite + branch: create-pull-request/update-rapids + base: master +