From ed904ddb71085a94d96b1a790d53e694a84ae676 Mon Sep 17 00:00:00 2001 From: robfrank Date: Tue, 5 May 2026 13:51:05 +0200 Subject: [PATCH 1/2] ci: add Dependabot configuration for GitHub Actions and Helm updates --- .github/dependabot.yml | 23 +++++++++++++++++++++++ .github/workflows/lint.yml | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f8b8790 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + labels: + - dependencies + - github-actions + commit-message: + prefix: ci + include: scope + + - package-ecosystem: helm + directory: /charts/arcadedb + schedule: + interval: weekly + labels: + - dependencies + - helm + commit-message: + prefix: chart + include: scope diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 51d727b..41efc03 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,4 +1,4 @@ -name: Lint +name: CI - Lint, Unit Tests, Integration Tests on: push: From e6a5ce87c80ea601d93bfc94e6896d142167ebb2 Mon Sep 17 00:00:00 2001 From: robfrank Date: Tue, 5 May 2026 13:56:14 +0200 Subject: [PATCH 2/2] ci: update Dependabot commit message prefix to 'chore' --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f8b8790..23fbc04 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,5 +19,5 @@ updates: - dependencies - helm commit-message: - prefix: chart + prefix: chore include: scope