diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-10-06 15:25:10 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-10-06 15:25:10 +0200 |
commit | d6bc5b46a4fc4b75dcba0380063cfc7e8bde212c (patch) | |
tree | f56bf43896bdd8a6c2c63bc931b8574445d24420 /.github/dependabot.yml | |
parent | 439574d9b7f2ac4a95d97cb56e57cf152bb01ad2 (diff) | |
parent | ca6c9c3e9965105624b1cc0a211b6edf986260f8 (diff) | |
download | FlightCore-d6bc5b46a4fc4b75dcba0380063cfc7e8bde212c.tar.gz FlightCore-d6bc5b46a4fc4b75dcba0380063cfc7e8bde212c.zip |
Merge branch 'main' into feat/launch-parameters
Diffstat (limited to '.github/dependabot.yml')
-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..19bb8c4c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +# Configures dependabot + +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: " |