Skip to content

Commit

Permalink
cron
Browse files Browse the repository at this point in the history
  • Loading branch information
KMicha committed Dec 18, 2024
1 parent 0ebdc6f commit eb61c9f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docker2016.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
push:
branches:
- 'main'
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string 1:00 weekly,Wednesday,1:00 #m h d/m m d/w
- cron: '32 2 * * 3'

jobs:
docker:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docker2018.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
push:
branches:
- 'main'
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string 1:00 weekly,Wednesday,1:00 #m h d/m m d/w
- cron: '32 2 * * 4'

jobs:
docker:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/docker2020.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
push:
branches:
- 'main'
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string 1:00 weekly,Wednesday,1:00 #m h d/m m d/w
- cron: '32 2 * * 5'

jobs:
docker:
Expand Down Expand Up @@ -44,6 +48,6 @@ jobs:
with:
file: ./Dockerfile20
push: true
tags: credocker/crephpdev:2020.0, tamboraorg/crephp:latest
tags: credocker/crephpdev:2020.0, credocker/crephp:latest


4 changes: 2 additions & 2 deletions .github/workflows/docker2022.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
- 'main'
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string 1:00 weekly,Saturday,1:00 #m h d/m m d/w
- cron: '25 2 * * 6'
# * is a special character in YAML so you have to quote this string 1:00 weekly,Wednesday,1:00 #m h d/m m d/w
- cron: '32 2 * * 6'

jobs:
docker:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker2024.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
- 'main'
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string 1:00 weekly,Saturday,1:00 #m h d/m m d/w
- cron: '25 2 * * 0'
# * is a special character in YAML so you have to quote this string 1:00 weekly,Wednesday,1:00 #m h d/m m d/w
- cron: '32 2 * * 0'

jobs:
docker:
Expand Down

0 comments on commit eb61c9f

Please sign in to comment.