Skip to content

Commit

Permalink
Fix cron string (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaehn authored Jul 15, 2024
1 parent c7ba19d commit f6df356
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update_datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Update Datasets and Create PR

on:
schedule:
- cron: '0 2 * * 7' # Runs at 02:00 UTC every Sunday
- cron: '0 2 * * 0' # Runs at 02:00 UTC every Sunday
workflow_dispatch: # This line enables manual triggering of the workflow

jobs:
Expand Down Expand Up @@ -73,4 +73,4 @@ jobs:
PR_NUMBER=$(echo ${{ steps.create-pr.outputs.pull-request-number }})
gh pr merge $PR_NUMBER --auto --squash
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

0 comments on commit f6df356

Please sign in to comment.