This repository has been archived by the owner on Apr 13, 2024. It is now read-only.
Update packages #53
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
on: | |
schedule: | |
- cron: "0 0 * * 6" | |
name: Update packages | |
jobs: | |
release: | |
name: Update npm packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update npm packages | |
uses: technote-space/create-pr-action@v2 | |
with: | |
EXECUTE_COMMANDS: | | |
rm package-lock.json | |
npx npm-check-updates -u --packageFile package.json | |
npm install | |
COMMIT_MESSAGE: 'chore: update npm dependencies' | |
COMMIT_NAME: 'GitHub Actions' | |
PR_BRANCH_NAME: 'chore-npm-update-${PR_ID}' | |
PR_TITLE: 'chore: update npm dependencies' |