Skip to content

Commit 8e4c568

Browse files
committed
Merge branch '2' into 3.0
2 parents 9a1749f + 880805d commit 8e4c568

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,8 @@ on:
44
push:
55
pull_request:
66
workflow_dispatch:
7-
# Every Monday at 12:10pm UTC
8-
schedule:
9-
- cron: '10 12 * * 1'
107

118
jobs:
129
ci:
1310
name: CI
14-
# Only run cron on the silverstripe account
15-
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
1611
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1

.github/workflows/dispatch-ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Dispatch CI
2+
3+
on:
4+
# At 12:10 PM UTC, only on Monday and Tuesday
5+
schedule:
6+
- cron: '10 12 * * 1,2'
7+
8+
jobs:
9+
dispatch-ci:
10+
name: Dispatch CI
11+
# Only run cron on the silverstripe account
12+
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Dispatch CI
16+
uses: silverstripe/gha-dispatch-ci@v1

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@
4141
},
4242
"minimum-stability": "dev",
4343
"prefer-stable": true
44-
}
44+
}

0 commit comments

Comments
 (0)