Skip to content

Commit ea67e6d

Browse files
authored
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 🦕
1 parent afea316 commit ea67e6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
schedule:
2020
# * is a special character in YAML so you have to quote this string
2121
# Run this Github Action every day at 7 AM UTC
22-
- cron: '* 7 * * *'
22+
- cron: '0 7 * * *'
2323

2424
jobs:
2525
build:

0 commit comments

Comments
 (0)