From f17cf82a874b74f038624d6a9fbe3b14c20e2c72 Mon Sep 17 00:00:00 2001 From: Carter Anderson Date: Thu, 25 Jun 2020 10:20:13 -0700 Subject: [PATCH] github actions: run once per day --- .github/workflows/rust.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 0953eb7f56..f59158642f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -1,8 +1,11 @@ name: Rust on: - push: - branches: [master] + # NOTE: temporarily disabled because on-push currently uses up too many resources + # push: + # branches: [master] + schedule: + - cron: '0 21 * * *' pull_request: branches: [master]