diff --git a/.github/workflows/update-package-lock.yaml b/.github/workflows/update-package-lock.yaml new file mode 100644 index 00000000000..b0704167f85 --- /dev/null +++ b/.github/workflows/update-package-lock.yaml @@ -0,0 +1,27 @@ +name: Update package-lock.json + +on: + schedule: + # This is probably 6am UTC, which is 10pm PST or 11pm PDT + # Alternatively, 6am local is also fine + - cron: '0 6 * * *' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 12 + registry-url: https://registry.npmjs.org/ + + - name: Configure git and update package-lock.json + run: | + git config user.email "ts_bot@rcavanaugh.com" + git config user.name "TypeScript Bot" + npm install --package-lock-only + git add package-lock.json + git commit -m "Update package-lock.json" + git push