silverstripe-contentreview/.github/workflows/update-js.yml

18 lines
442 B
YAML
Raw Normal View History

2022-07-29 03:04:47 +02:00
name: Update JS
on:
workflow_dispatch:
# Run on a schedule of once per quarter
schedule:
2023-08-29 05:09:24 +02:00
- cron: '40 20 1 */3 *'
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
steps:
- name: Update JS
uses: silverstripe/gha-update-js@v1