From 5242329d4f212438615f74ce1fd8f5fe5a0dc893 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Mon, 15 May 2023 14:55:58 +0200 Subject: [PATCH 1/3] build: Add initial dependabot config --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..bd70b60ff --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# Configures depandabot + +version: 2 +updates: + # NPM packages + - package-ecosystem: 'npm' + directory: '/src-vue' + + # Rust crates + - package-ecosystem: 'cargo' + directory: '/src-tauri' From 5643093ec5eb3991efd8b7ff8404ce4d63c9d4cf Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Mon, 15 May 2023 14:57:22 +0200 Subject: [PATCH 2/3] fix: Add missing schedule --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bd70b60ff..dd577e14c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,11 @@ updates: # NPM packages - package-ecosystem: 'npm' directory: '/src-vue' + schedule: + interval: "daily" # Rust crates - package-ecosystem: 'cargo' directory: '/src-tauri' + schedule: + interval: "daily" From 52700118b42f2591f59a9f787fe4150a53840bea Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Mon, 15 May 2023 14:58:39 +0200 Subject: [PATCH 3/3] build: Add `chore:` prefix to commit message --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index dd577e14c..90793d205 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,9 +7,13 @@ updates: 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: "