Skip to content

Commit

Permalink
🔧 (schedule.yml): update cron schedule to run every 3 hours (#125)
Browse files Browse the repository at this point in the history
The cron schedule in the GitHub Actions workflow is updated to run every
3 hours instead of once daily. This change allows for more frequent
execution of the workflow, which can be beneficial for tasks that
require regular updates or checks throughout the day.
  • Loading branch information
MrHinsh authored Nov 20, 2024
2 parents c14b74a + 6f6410a commit eb1e055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/shedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *" # Adjust the schedule as needed
- cron: 0 */3 * * * # Adjust the schedule as needed

jobs:
find-latest-tag:
Expand Down

0 comments on commit eb1e055

Please sign in to comment.