diff options
author | 2020-12-09 00:13:24 +0000 | |
---|---|---|
committer | 2020-12-09 00:13:24 +0000 | |
commit | 819f6aaa2a5b784cd65442a02be77574b71256fe (patch) | |
tree | 8f52909ead90887217d5a0827397f0314e821ad7 | |
parent | fd138748201c6deb27530423677c68a6d8779bea (diff) | |
download | cortex-m-819f6aaa2a5b784cd65442a02be77574b71256fe.tar.gz cortex-m-819f6aaa2a5b784cd65442a02be77574b71256fe.tar.zst cortex-m-819f6aaa2a5b784cd65442a02be77574b71256fe.zip |
Finish setting up scheduled CI job
-rw-r--r-- | .github/workflows/cron.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 8663e4f..bc31bb2 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -1,7 +1,7 @@ on: schedule: - # Run every week at 10pm UTC Tuesday. - - cron: '0 22 * * TUE' + # Run every week at 8am UTC Saturday. + - cron: '0 8 * * SAT' name: Cron CI @@ -17,8 +17,6 @@ jobs: override: true - name: Run tests run: cargo test --all - - name: Deliberate failure to test issue opening - run: false - uses: imjohnbo/issue-bot@v2 if: failure() with: |