Skip to content

Commit

Permalink
MNT Run module-standardiser (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Feb 2, 2024
1 parent b8012e8 commit 4a59b47
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/update-js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Update JS

on:
workflow_dispatch:
# Run on a schedule of once per quarter
schedule:
- cron: '50 10 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

0 comments on commit 4a59b47

Please sign in to comment.