Skip to content

Commit

Permalink
update scheduled actions to run weekly instead of daily
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Oct 27, 2024
1 parent ccd0742 commit 8b71f3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
default: false
type: boolean
schedule:
- cron: '0 13 * * *' # Runs at 6 am pacific every day
- cron: '0 13 * * SUN' # Runs at 6 am pacific every sunday

jobs:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_coc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
type: boolean
# Run every Sunday at midnight UTC (00:00) - triggered by webhook?
schedule:
- cron: '0 0 * * 0'
- cron: '0 0 * * SUN'


jobs:
Expand Down

0 comments on commit 8b71f3c

Please sign in to comment.