Update package lock #833
This file contains 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 package lock | |
'on': | |
schedule: | |
- cron: 13 9,16,23 * * * | |
jobs: | |
update_package_lock: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
node-version: 18.17.1 | |
- run: npm install | |
- uses: gr2m/create-or-update-pull-request-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
path: package-lock.json | |
title: update package lock | |
body: bring lock in sync | |
branch: package-lock | |
labels: npm | |
commit-message: 'chore(deps): lock' |