Skip to content

Commit

Permalink
build: Add dependabot config (#358)
Browse files Browse the repository at this point in the history
Adds config for running dependabot to make PRs whenever some dependency is outdated.

Should check both Rust and NodeJS dependencies.
  • Loading branch information
GeckoEidechse authored Aug 3, 2023
1 parent f1ac3d7 commit 2519958
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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: "

0 comments on commit 2519958

Please sign in to comment.