Skip to content

Commit

Permalink
fix cron schedule.
Browse files Browse the repository at this point in the history
Only run once at 5, not every minute
  • Loading branch information
AlvinSchiller committed Oct 10, 2023
1 parent e55aa14 commit fe6fdea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker_bullseye.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test Install Scripts for Bullseye on Docker
on:
schedule:
# run at 5 every sunday
- cron: '* 5 * * 0'
- cron: '0 5 * * 0'
push:
branches-ignore:
- 'future3/**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_bullseye_altuser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test Install Scripts for Bullseye (alternative user) on Docker
on:
schedule:
# run at 5 every sunday
- cron: '* 5 * * 0'
- cron: '0 5 * * 0'
push:
branches-ignore:
- 'future3/**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_buster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test Install Scripts for Buster on Docker
on:
schedule:
# run at 5 every sunday
- cron: '* 5 * * 0'
- cron: '0 5 * * 0'
push:
branches-ignore:
- 'future3/**'
Expand Down

0 comments on commit fe6fdea

Please sign in to comment.