Skip to content

Commit 9e4e060

Browse files
authored
chore: Limit Github Action to run once per week (#1417)
Right now the Github Action that updates discovery artifacts runs every day at 7 am UTC. Since we typically only release `google-api-python-client` once per week, I'd like to modify the action to only update discovery artifacts once per week.
1 parent 3659137 commit 9e4e060

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ name: A workflow for updating discovery artifacts
1818
on:
1919
schedule:
2020
# * is a special character in YAML so you have to quote this string
21-
# Run this Github Action every day at 7 AM UTC
22-
- cron: '0 7 * * *'
21+
# Run this Github Action every Tuesday at 7 AM UTC
22+
- cron: '0 7 * * 2'
2323

2424
jobs:
2525
build:

0 commit comments

Comments
 (0)