Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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: chore
include: scope
Comment on lines +14 to +23
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The helm package ecosystem configuration is currently ineffective because charts/arcadedb/Chart.yaml does not define any subchart dependencies. Dependabot's Helm support is limited to updating these dependencies and does not support updating container image tags in values.yaml.

Additionally, the commit message prefix chart is non-standard. Consider using chore or build for better compatibility with Conventional Commits and automated changelog tools.

  - package-ecosystem: helm
    directory: /charts/arcadedb
    schedule:
      interval: weekly
    labels:
      - dependencies
      - helm
    commit-message:
      prefix: chore
      include: scope

2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: CI - Lint, Unit Tests, Integration Tests

on:
push:
Expand Down
Loading