Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Cron Times: Weekly instead of Daily, Profile Update Notification Sent Earlier #762

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/profile-update-notification.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Profile Update Notification
on:
schedule:
# Runs script at 10PM UTC (5PM or 6PM ET) every day. This should be two hours before pull-from-idol
- cron: '0 23 * * *'
# Runs script at 5PM UTC (12PM or 1PM ET) every Monday. This should be seven hours before pull-from-idol
- cron: '0 17 * * MON'

jobs:
profile-update-notification:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-from-idol-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Pull from IDOL Images
on:
workflow_dispatch:
schedule:
# Run the script at 0AM in UTC every day, which is 7PM or 8PM in ET.
- cron: '0 0 * * *'
# Run the script at 0AM in UTC every Tuesday, which is 7PM or 8PM on Monday in ET.
- cron: '0 0 * * TUE'
pull_request:
paths:
- backend/scripts/pull-from-idol-images.ts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-from-idol.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
types: pull-idol-changes
workflow_dispatch:
schedule:
# Run the script at 0AM in UTC every day, which is 7PM or 8PM in ET.
- cron: '0 0 * * *'
# Run the script at 0AM in UTC every Tuesday, which is 7PM or 8PM on Monday in ET.
- cron: '0 0 * * TUE'
pull_request:
paths:
- new-dti-website/pull-from-idol.ts
Expand Down
Loading