2022-07-29 03:04:47 +02:00
|
|
|
name: Update JS
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
2024-05-30 23:43:52 +02:00
|
|
|
# At 3:15 AM UTC, on day 1 of the month, only in March and September
|
2022-07-29 03:04:47 +02:00
|
|
|
schedule:
|
2024-05-30 23:43:52 +02:00
|
|
|
- cron: '15 3 1 3,9 *'
|
2024-05-16 00:13:28 +02:00
|
|
|
|
|
|
|
permissions: {}
|
2022-07-29 03:04:47 +02:00
|
|
|
|
|
|
|
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
|
2024-05-16 00:13:28 +02:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
pull-requests: write
|
|
|
|
actions: write
|
2022-07-29 03:04:47 +02:00
|
|
|
steps:
|
|
|
|
- name: Update JS
|
|
|
|
uses: silverstripe/gha-update-js@v1
|