diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-10-09 15:52:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 15:52:01 +0200 |
commit | cf14ad28597dab5403f3d4177b4a692ff77aa27e (patch) | |
tree | aedcdf42a0b57600fde4ca318fb4e4b1d3505359 /.github/dependabot.yml | |
parent | 65f5d9f608a7f7fcf4b9879df7b130f2af6eb69b (diff) | |
download | FlightCore-cf14ad28597dab5403f3d4177b4a692ff77aa27e.tar.gz FlightCore-cf14ad28597dab5403f3d4177b4a692ff77aa27e.zip |
build: Add npm packge in root dir to bot config (#600)
The repo root dir also has a `package.json` which contains the necessary
build tools. We wanna keep those up-to-date as well.
Diffstat (limited to '.github/dependabot.yml')
-rw-r--r-- | .github/dependabot.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 19bb8c4c..3af6e5da 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,6 +2,14 @@ version: 2 updates: + # Root NPM package + - package-ecosystem: 'npm' + directory: '/' + schedule: + interval: "daily" + commit-message: + prefix: "chore: " + # NPM packages - package-ecosystem: 'npm' directory: '/src-vue' |