Skip to content

Commit 67d683e

Browse files
authored
♻️ refactor(workflow): update cron schedules for jobs (#55)
Adjusted the cron schedules for various workflows: - Updated `CRON_dev` to run on Mondays. - Updated `CRON_v2` to run on Tuesdays. - Updated `CRON_v3` to run on Wednesdays.
1 parent 8fcf398 commit 67d683e

File tree

6 files changed

+26
-26
lines changed

6 files changed

+26
-26
lines changed

.github/workflows/ci-crowdin-download-po.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ name: ci-crowdin-download-po
66
on:
77
# Triggers the workflow based on a schedule.
88
schedule:
9-
- cron: '0 8 * * 1' # CRON_dev
10-
- cron: '0 0 1 * *' # CRON_v2
11-
- cron: '0 0 2 * *' # CRON_v3
9+
- cron: '0 0 * * 1' # CRON_dev
10+
- cron: '0 0 * * 2' # CRON_v2
11+
- cron: '0 0 * * 3' # CRON_v3
1212
# Triggers the workflow manually through the GitHub UI.
1313
workflow_dispatch:
1414
inputs:
@@ -50,9 +50,9 @@ on:
5050
- 'NEVER'
5151

5252
env:
53-
CRON_dev: '0 8 * * 1'
54-
CRON_v2: '0 0 1 * *'
55-
CRON_v3: '0 0 2 * *'
53+
CRON_dev: '0 0 * * 1'
54+
CRON_v2: '0 0 * * 2'
55+
CRON_v3: '0 0 * * 3'
5656

5757
jobs:
5858
precondition:

.github/workflows/ci-deploy-po-version.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
# Triggers the workflow based on a schedule.
88
schedule:
99
- cron: '0 8 * * 1' # CRON_dev
10-
- cron: '0 8 1 * *' # CRON_v2
11-
- cron: '0 8 2 * *' # CRON_v3
10+
- cron: '0 8 * * 2' # CRON_v2
11+
- cron: '0 8 * * 3' # CRON_v3
1212
# Triggers the workflow manually through the GitHub UI.
1313
workflow_dispatch:
1414
inputs:
@@ -37,8 +37,8 @@ on:
3737

3838
env:
3939
CRON_dev: '0 8 * * 1'
40-
CRON_v2: '0 8 1 * *'
41-
CRON_v3: '0 8 2 * *'
40+
CRON_v2: '0 8 * * 2'
41+
CRON_v3: '0 8 * * 3'
4242

4343
jobs:
4444
precondition:

.github/workflows/ci-gettext-compendium.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
# Triggers the workflow based on a schedule.
88
schedule:
99
- cron: '0 4 * * 1' # CRON_dev
10-
- cron: '0 4 1 * *' # CRON_v2
11-
- cron: '0 4 2 * *' # CRON_v3
10+
- cron: '0 4 * * 2' # CRON_v2
11+
- cron: '0 4 * * 3' # CRON_v3
1212
# Triggers the workflow manually through the GitHub UI.
1313
workflow_dispatch:
1414
inputs:
@@ -42,8 +42,8 @@ on:
4242

4343
env:
4444
CRON_dev: '0 4 * * 1'
45-
CRON_v2: '0 4 1 * *'
46-
CRON_v3: '0 4 2 * *'
45+
CRON_v2: '0 4 * * 2'
46+
CRON_v3: '0 4 * * 3'
4747

4848
jobs:
4949
precondition:

.github/workflows/ci-gettext-statistics.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
# Triggers the workflow based on a schedule.
88
schedule:
99
- cron: '0 0 * * 1' # CRON_dev
10-
- cron: '0 0 1 * *' # CRON_v2
11-
- cron: '0 0 2 * *' # CRON_v3
10+
- cron: '0 0 * * 2' # CRON_v2
11+
- cron: '0 0 * * 3' # CRON_v3
1212
# Triggers the workflow manually through the GitHub UI.
1313
workflow_dispatch:
1414
inputs:
@@ -37,8 +37,8 @@ on:
3737

3838
env:
3939
CRON_dev: '0 0 * * 1'
40-
CRON_v2: '0 0 1 * *'
41-
CRON_v3: '0 0 2 * *'
40+
CRON_v2: '0 0 * * 2'
41+
CRON_v3: '0 0 * * 3'
4242

4343
jobs:
4444
precondition:

.github/workflows/ci-sphinx-build-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
# Triggers the workflow based on a schedule.
88
schedule:
99
- cron: '0 8 * * 1' # CRON_dev
10-
- cron: '0 8 1 * *' # CRON_v2
11-
- cron: '0 8 2 * *' # CRON_v3
10+
- cron: '0 8 * * 2' # CRON_v2
11+
- cron: '0 8 * * 3' # CRON_v3
1212
# Triggers the workflow manually through the GitHub UI.
1313
workflow_dispatch:
1414
inputs:
@@ -50,8 +50,8 @@ on:
5050

5151
env:
5252
CRON_dev: '0 8 * * 1'
53-
CRON_v2: '0 8 1 * *'
54-
CRON_v3: '0 8 2 * *'
53+
CRON_v2: '0 8 * * 2'
54+
CRON_v3: '0 8 * * 3'
5555

5656
jobs:
5757
precondition:

.github/workflows/ci-sphinx-update-pot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
# Triggers the workflow based on a schedule.
88
schedule:
99
- cron: '0 8 * * 1' # CRON_dev
10-
- cron: '0 8 1 * *' # CRON_v2
11-
- cron: '0 8 2 * *' # CRON_v3
10+
- cron: '0 8 * * 2' # CRON_v2
11+
- cron: '0 8 * * 3' # CRON_v3
1212
# Triggers the workflow manually through the GitHub UI.
1313
workflow_dispatch:
1414
inputs:
@@ -46,8 +46,8 @@ on:
4646

4747
env:
4848
CRON_dev: '0 8 * * 1'
49-
CRON_v2: '0 8 1 * *'
50-
CRON_v3: '0 8 2 * *'
49+
CRON_v2: '0 8 * * 2'
50+
CRON_v3: '0 8 * * 3'
5151

5252
jobs:
5353
precondition:

0 commit comments

Comments
 (0)