Skip to content

Commit

Permalink
Fix syntax error in cron job for backup
Browse files Browse the repository at this point in the history
The schedule should not be part of the workflow dispatch as they are
separate. This prevents the cron job from running
  • Loading branch information
cwrw committed Nov 24, 2023
1 parent aaf925b commit 369dade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backup_nightly_database.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Production DB nightly backup
on:
workflow_dispatch:
schedule:
- cron: "0 3 * * *" # 03:00 UTC
schedule:
- cron: "0 3 * * *" # 03:00 UTC

jobs:
backup-production:
Expand Down

0 comments on commit 369dade

Please sign in to comment.