Skip to content

Commit 3d8a961

Browse files
MNT Run module-standardiser (#223)
1 parent 9842d58 commit 3d8a961

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
name: CI
1111
# Do not run if this is a pull-request from same repo i.e. not a fork repo
1212
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
13-
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
13+
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v2

.github/workflows/merge-up.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
actions: write
2020
steps:
2121
- name: Merge-up
22-
uses: silverstripe/gha-merge-up@v1
22+
uses: silverstripe/gha-merge-up@v2

.github/workflows/update-js.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Update JS
2+
3+
on:
4+
workflow_dispatch:
5+
# At 1:05 PM UTC, on day 1 of the month, only in March and September
6+
schedule:
7+
- cron: '5 13 1 3,9 *'
8+
9+
permissions: {}
10+
11+
jobs:
12+
update-js:
13+
name: Update JS
14+
# Only run cron on the silverstripe account
15+
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
16+
runs-on: ubuntu-latest
17+
permissions:
18+
contents: write
19+
pull-requests: write
20+
actions: write
21+
steps:
22+
- name: Update JS
23+
uses: silverstripe/gha-update-js@v1

0 commit comments

Comments
 (0)