Update JS #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update JS | |
on: | |
workflow_dispatch: | |
# Run on a schedule of once per quarter | |
schedule: | |
- cron: '30 6 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 |