Skip to content

Commit f2e2168

Browse files
Merge pull request #229 from creative-commoners/pulls/6/module-standardiser-1754535006
MNT Run module-standardiser
2 parents 246fe71 + ebdab0a commit f2e2168

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

.github/workflows/dispatch-ci.yml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,30 @@
11
name: Dispatch CI
22

33
on:
4-
# At 9:45 AM UTC, only on Monday and Tuesday
4+
# At 9:45 AM UTC, only on Monday, Tuesday, and Wednesday
55
schedule:
6-
- cron: '45 9 * * 1,2'
6+
- cron: '45 9 * * 1,2,3'
7+
workflow_dispatch:
8+
inputs:
9+
major_type:
10+
description: 'Major branch type'
11+
required: true
12+
type: choice
13+
options:
14+
- 'dynamic'
15+
- 'current'
16+
- 'next'
17+
- 'previous'
18+
default: 'dynamic'
19+
minor_type:
20+
description: 'Minor branch type'
21+
required: true
22+
type: choice
23+
options:
24+
- 'dynamic'
25+
- 'next-minor'
26+
- 'next-patch'
27+
default: 'dynamic'
728

829
permissions: {}
930

@@ -19,3 +40,6 @@ jobs:
1940
steps:
2041
- name: Dispatch CI
2142
uses: silverstripe/gha-dispatch-ci@v1
43+
with:
44+
major_type: ${{ inputs.major_type }}
45+
minor_type: ${{ inputs.minor_type }}

.github/workflows/merge-up.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Merge-up
22

33
on:
4-
# At 9:45 AM UTC, only on Friday
4+
# At 9:45 AM UTC, only on Saturday
55
schedule:
6-
- cron: '45 9 * * 5'
6+
- cron: '45 9 * * 6'
77
workflow_dispatch:
88

99
permissions: {}

0 commit comments

Comments
 (0)