chore: Github action should only run once per day (#1312)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)
Fixes #1311 🦕
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index f99a0b4..cc6e6cb 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -19,7 +19,7 @@
schedule:
# * is a special character in YAML so you have to quote this string
# Run this Github Action every day at 7 AM UTC
- - cron: '* 7 * * *'
+ - cron: '0 7 * * *'
jobs:
build: