silverstripe-tagfield/.github/workflows/update-js.yml
2024-05-31 09:46:14 +12:00

24 lines
575 B
YAML

name: Update JS
on:
workflow_dispatch:
# At 2:10 PM UTC, on day 1 of the month, only in March and September
schedule:
- cron: '10 14 1 3,9 *'
permissions: {}
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
permissions:
contents: write
pull-requests: write
actions: write
steps:
- name: Update JS
uses: silverstripe/gha-update-js@v1