Skip to content

Commit

Permalink
fix: run scheduled task earlier in the morning
Browse files Browse the repository at this point in the history
So that the notifications are waiting in our inbox first thing rather than getting into something else and then getting them.
  • Loading branch information
stdavis committed Oct 21, 2024
1 parent 63496f9 commit 63bccdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ runs:
if [ ! "$(gcloud scheduler jobs list | grep conductor)" ]; then
gcloud scheduler jobs create http conductor \
--description="Trigger the conductor bot once a week on monday morning" \
--schedule="0 9 * * 1" \
--schedule="0 6 * * 1" \
--time-zone=America/Denver \
--uri=${{ steps.deploy.outputs.url }}/gcp/schedule \
--http-method=POST \
Expand All @@ -126,7 +126,7 @@ runs:
else
gcloud scheduler jobs update http conductor \
--description="Trigger the conductor bot once a week on monday morning" \
--schedule="0 9 * * 1" \
--schedule="0 6 * * 1" \
--time-zone=America/Denver \
--uri=${{ steps.deploy.outputs.url }}/gcp/schedule \
--http-method=POST \
Expand Down

0 comments on commit 63bccdb

Please sign in to comment.