Skip to content

Commit

Permalink
Changes the schedule so that both actions run every day at 12:00 UTC …
Browse files Browse the repository at this point in the history
…(5AM PST & 8AM EST) (#1576)

This is a better schedule because it runs right before people start working in our team
hence giving us a chance to quickly respond to failures, also doesn't take the computing capacity
when we need it (during working hours). Finally this will capture more changes than before because
there's a chance the code gets updated after hours.
  • Loading branch information
spring1843 authored Mar 25, 2022
1 parent 72f8c56 commit fe3cf54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ main ]
schedule:
- cron: '22 18 * * 0'
- cron: '0 12 * * *'

jobs:
analyze:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deflake.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Deflake
on:
schedule:
- cron: '22 18 * * 0'
- cron: '0 12 * * *'
jobs:
build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit fe3cf54

Please sign in to comment.