From 1d6d25306757a535763dca4775dc5e33b7188a2c Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Mon, 13 Nov 2023 20:25:24 +0100 Subject: [PATCH] =?UTF-8?q?New=20NPM=20Update=20Bot=20=F0=9F=A4=96=20(#25)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yml | 11 ---------- .github/workflows/npm-update-bot.yml | 30 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 11 deletions(-) delete mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/npm-update-bot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 2c419e94..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,11 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "daily" - - - package-ecosystem: "npm" - directory: "/src" - schedule: - interval: "daily" diff --git a/.github/workflows/npm-update-bot.yml b/.github/workflows/npm-update-bot.yml new file mode 100644 index 00000000..c6f87833 --- /dev/null +++ b/.github/workflows/npm-update-bot.yml @@ -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 'nub@users.noreply.github.com' + git add . + git commit -am "npm: package updates" || true + git push || true