mirror of https://github.com/wg-easy/wg-easy
committed by
Philip H.
2 changed files with 30 additions and 11 deletions
@ -1,11 +0,0 @@ |
|||||
version: 2 |
|
||||
updates: |
|
||||
- package-ecosystem: "npm" |
|
||||
directory: "/" |
|
||||
schedule: |
|
||||
interval: "daily" |
|
||||
|
|
||||
- package-ecosystem: "npm" |
|
||||
directory: "/src" |
|
||||
schedule: |
|
||||
interval: "daily" |
|
@ -0,0 +1,30 @@ |
|||||
|
name: NPM Update Bot 🤖 |
||||
|
|
||||
|
on: |
||||
|
push: |
||||
|
branches: [ "main" ] |
||||
|
schedule: |
||||
|
- cron: "0 0 * * *" |
||||
|
|
||||
|
jobs: |
||||
|
nub: |
||||
|
name: NPM Update Bot 🤖 |
||||
|
runs-on: ubuntu-latest |
||||
|
steps: |
||||
|
- uses: actions/checkout@main |
||||
|
- uses: actions/setup-node@main |
||||
|
with: |
||||
|
node-version: 'lts/*' |
||||
|
|
||||
|
- name: Bot 🤖 "Updating NPM Packages..." |
||||
|
run: | |
||||
|
npm config set fund false |
||||
|
npm install -g npm-check-updates |
||||
|
npm update |
||||
|
cd src |
||||
|
npm update |
||||
|
git config --global user.name 'NPM Update Bot' |
||||
|
git config --global user.email '[email protected]' |
||||
|
git add . |
||||
|
git commit -am "npm: package updates" || true |
||||
|
git push || true |
Loading…
Reference in new issue