diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-08-03 21:57:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 21:57:14 +0200 |
commit | 2519958aeac5ac4a59653be5a002a644401883f1 (patch) | |
tree | a976c146443a4a1895e670c4d1a97f4730e3e862 | |
parent | f1ac3d76fa59c4b13b8db1e8f812784e54c7705f (diff) | |
download | FlightCore-2519958aeac5ac4a59653be5a002a644401883f1.tar.gz FlightCore-2519958aeac5ac4a59653be5a002a644401883f1.zip |
build: Add dependabot config (#358)
Adds config for running dependabot to make PRs whenever some dependency is outdated.
Should check both Rust and NodeJS dependencies.
-rw-r--r-- | .github/dependabot.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..90793d20 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +# Configures depandabot + +version: 2 +updates: + # NPM packages + - package-ecosystem: 'npm' + directory: '/src-vue' + schedule: + interval: "daily" + commit-message: + prefix: "chore: " + + # Rust crates + - package-ecosystem: 'cargo' + directory: '/src-tauri' + schedule: + interval: "daily" + commit-message: + prefix: "chore: " |