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.
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 0fd4b14..26e97f6 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -18,8 +18,8 @@
 on:
   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:  '0 7 * * *'
+    # Run this Github Action every Tuesday at 7 AM UTC
+    - cron:  '0 7 * * 2'
 
 jobs:
   build: