aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-08-03 21:57:14 +0200
committerGitHub <noreply@github.com>2023-08-03 21:57:14 +0200
commit2519958aeac5ac4a59653be5a002a644401883f1 (patch)
treea976c146443a4a1895e670c4d1a97f4730e3e862 /.github
parentf1ac3d76fa59c4b13b8db1e8f812784e54c7705f (diff)
downloadFlightCore-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.
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml19
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: "