Skip to content

Commit

Permalink
chore: reverted cron value, previously set for test purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-deri committed Oct 19, 2024
1 parent c95baec commit c1da73f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/07_report_generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Generate and send report
on:
schedule:
# scheduled generation cron
- cron: '00 08 * * *' # (01:00AM GTM) generate last day report
- cron: '00 01 * * *' # (01:00AM GTM) generate last day report
- cron: '00 06 * * 1' # (06:00AM GTM) generate last week report on monday
- cron: '30 06 1 * *' # (06:00AM GTM) generate last month report on first day of the month
# scheduled send cron
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
steps:

- name: Generating daily report via scheduling
if: github.event.schedule == '00 08 * * *'
if: github.event.schedule == '00 01 * * *'
run: |
echo "Generating a daily report"
echo "report_type=daily" >> $GITHUB_ENV
Expand Down

0 comments on commit c1da73f

Please sign in to comment.