diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-04-15 16:10:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 16:10:33 +0200 |
commit | 1e2c5db222bd02c9cc9b2b7455123b670b45e8aa (patch) | |
tree | e47a7ef6fcfbd54d46254567cffc8c5e26615689 | |
parent | 25b6cc257670387afb1ab70d475078e00c1f9059 (diff) | |
download | FlightCore-1e2c5db222bd02c9cc9b2b7455123b670b45e8aa.tar.gz FlightCore-1e2c5db222bd02c9cc9b2b7455123b670b45e8aa.zip |
chore: Change dependabot PR interval to weekly (#899)
Daily pull requests are a bit too frequent and just spam the list of PRs.
-rw-r--r-- | .github/dependabot.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3af6e5da..0403561b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,7 @@ updates: - package-ecosystem: 'npm' directory: '/' schedule: - interval: "daily" + interval: "weekly" commit-message: prefix: "chore: " @@ -14,7 +14,7 @@ updates: - package-ecosystem: 'npm' directory: '/src-vue' schedule: - interval: "daily" + interval: "weekly" commit-message: prefix: "chore: " @@ -22,6 +22,6 @@ updates: - package-ecosystem: 'cargo' directory: '/src-tauri' schedule: - interval: "daily" + interval: "weekly" commit-message: prefix: "chore: " |