From d780d84f78de999d873f63be8e30c4ea53938359 Mon Sep 17 00:00:00 2001 From: akanksha Date: Sat, 20 Apr 2024 18:31:00 +0530 Subject: [PATCH] update --- .github/workflows/actions.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index e267fb4..5322fde 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -3,9 +3,9 @@ name: Run Scripts on: schedule: # Run newday.py every day. - - cron: '0 13 * * *' - # Run update_BoW.py on the 1st of every month - - cron: '25 13 * * *' + - cron: '3 13 * * *' + # Run update_BoW.py every day + - cron: '45 13 * * *' jobs: build: @@ -32,8 +32,8 @@ jobs: - name: Execute newday.py run: python project/newday.py - - name: Execute update_BoW.py (only on the 1st of every month) - if: ${{ github.event_name == 'schedule' && github.event.cron == '0 19 1 * *' }} + - name: Execute update_BoW.py (every day) + if: ${{ github.event_name == 'schedule' && github.event.cron == '25 13 * * *' }} run: python update_BoW.py - name: Commit files