File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed
Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1919 actions : write
2020 steps :
2121 - name : Merge-up
22- uses : silverstripe/gha-merge-up@v1
22+ uses : silverstripe/gha-merge-up@v2
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments