Skip to content

Commit 38d27d8

Browse files
committed
MNT Run module-standardiser
1 parent 5ee0082 commit 38d27d8

2 files changed

Lines changed: 28 additions & 4 deletions

File tree

.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 8:40 AM UTC, only on Friday and Saturday
4+
# At 8:40 AM UTC, only on Friday, Saturday, and Sunday
55
schedule:
6-
- cron: '40 8 * * 5,6'
6+
- cron: '40 8 * * 5,6,0'
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 8:40 AM UTC, only on Tuesday
4+
# At 8:40 AM UTC, only on Wednesday
55
schedule:
6-
- cron: '40 8 * * 2'
6+
- cron: '40 8 * * 3'
77
workflow_dispatch:
88

99
permissions: {}

0 commit comments

Comments
 (0)