From c15bc54728016c1c1f3546d5805ba02347e8658c Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Thu, 3 Apr 2025 12:24:30 -0700 Subject: [PATCH] ci(update-inputs): initial version --- .github/workflows/update-inputs.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/update-inputs.yml diff --git a/.github/workflows/update-inputs.yml b/.github/workflows/update-inputs.yml new file mode 100644 index 0000000..ef2b2b7 --- /dev/null +++ b/.github/workflows/update-inputs.yml @@ -0,0 +1,26 @@ +name: Update Inputs + +on: + pull_request: + paths: + - 'package.json' + - 'package-lock.json' + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + update-inputs: + name: Update Inputs + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version-file: .node-version + cache: 'npm' + - run: npm ci + - run: node scripts/update-inputs.js + - uses: stefanzweifel/git-auto-commit-action@e348103e9026cc0eee72ae06630dbe30c8bf7a79 # v5.1.0