Update JS #1
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: | |
# At 10:50 AM UTC, on day 1 of the month, only in March and September | |
schedule: | |
- cron: '50 10 1 3,9 *' | |
permissions: {} | |
jobs: | |
update-js: | |
name: Update JS | |
# Only run cron on the colymba account | |
if: (github.event_name == 'schedule' && github.repository_owner == 'colymba') || (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 |