From b78d04803f8cc6094b30ef63b84e912cc6f4d510 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Fri, 29 Jul 2022 13:10:34 +1200 Subject: [PATCH] MNT Use update-js action --- .github/workflows/update-js-deps.yml | 9 --------- .github/workflows/update-js.yml | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 9 deletions(-) delete mode 100644 .github/workflows/update-js-deps.yml create mode 100644 .github/workflows/update-js.yml diff --git a/.github/workflows/update-js-deps.yml b/.github/workflows/update-js-deps.yml deleted file mode 100644 index 06840a4..0000000 --- a/.github/workflows/update-js-deps.yml +++ /dev/null @@ -1,9 +0,0 @@ -name: Update JS deps -on: - # Run on a schedule once per quarter - schedule: - - cron: '0 0 1 */3 *' - workflow_dispatch: -jobs: - ci: - uses: silverstripe/github-actions-ci-cd/.github/workflows/update-js-deps.yml@v0.1 diff --git a/.github/workflows/update-js.yml b/.github/workflows/update-js.yml new file mode 100644 index 0000000..0f44712 --- /dev/null +++ b/.github/workflows/update-js.yml @@ -0,0 +1,17 @@ +name: Update JS + +on: + workflow_dispatch: + # Run on a schedule of once per quarter + schedule: + - cron: '0 0 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