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

18 lines
441 B
YAML
Raw Normal View History

2022-07-29 03:07:13 +02:00
name: Update JS
on:
workflow_dispatch:
# Run on a schedule of once per quarter
schedule:
2023-08-29 05:07:59 +02:00
- cron: '10 2 1 */3 *'
2022-07-29 03:07:13 +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