Skip to content

Commit 2b9d669

Browse files
authored
Merge pull request #135 from django-commons/develop
update scheduled actions to run weekly instead of daily
2 parents ccd0742 + 8b71f3c commit 2b9d669

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
default: false
1212
type: boolean
1313
schedule:
14-
- cron: '0 13 * * *' # Runs at 6 am pacific every day
14+
- cron: '0 13 * * SUN' # Runs at 6 am pacific every sunday
1515

1616
jobs:
1717

.github/workflows/update_coc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
type: boolean
1111
# Run every Sunday at midnight UTC (00:00) - triggered by webhook?
1212
schedule:
13-
- cron: '0 0 * * 0'
13+
- cron: '0 0 * * SUN'
1414

1515

1616
jobs:

0 commit comments

Comments
 (0)