Update JS #18
This file contains hidden or 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: | |
| inputs: | |
| branch_type: | |
| description: 'The branch type to run action on' | |
| required: true | |
| default: 'schedule' | |
| type: choice | |
| options: | |
| - 'schedule' | |
| - 'prev-major-curr-minor' | |
| - 'curr-major-curr-minor' | |
| - 'curr-major-next-minor' | |
| # At 2:10 PM UTC, on day 1 of the month, only in February and August | |
| schedule: | |
| - cron: '10 14 1 2,8 *' | |
| 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 | |
| with: | |
| branch_type: ${{ github.event_name == 'schedule' && 'schedule' || github.event.inputs.branch_type }} |