Merge branch '3.0' into 3

This commit is contained in:
Guy Sartorelli 2023-08-30 11:55:49 +12:00
commit d409bce923
No known key found for this signature in database
GPG Key ID: F313E3B9504D496A
1 changed files with 17 additions and 0 deletions

17
.github/workflows/update-js.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Update JS
on:
workflow_dispatch:
# Run on a schedule of once per quarter
schedule:
- cron: '55 23 1 */3 *'
jobs:
update-js:
name: Update JS
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Update JS
uses: silverstripe/gha-update-js@v1