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
53 changes: 53 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,59 @@ updates:
labels:
- type:ci

- package-ecosystem: pre-commit
directory: /
schedule:
interval: daily
time: "06:00"
timezone: Etc/UTC
commit-message:
prefix: "chore"
groups:
minor-and-patch:
update-types: [minor, patch]
open-pull-requests-limit: 5
reviewers:
- Aureliolo
labels:
- type:chore

- package-ecosystem: npm
directories:
- /web
- /site
schedule:
interval: daily
time: "06:00"
timezone: Etc/UTC
commit-message:
prefix: "chore"
groups:
minor-and-patch:
update-types: [minor, patch]
open-pull-requests-limit: 10
reviewers:
- Aureliolo
labels:
- type:chore
Comment on lines +55 to +72
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

For better separation of concerns and future flexibility, consider splitting this npm configuration into two separate blocks: one for application dependencies (/web, /site) and another for CI tooling dependencies (/.github).

This would allow you to apply different settings to each group. For example, the suggested change below:

  • Uses a more specific label type:ci for the /.github dependencies, which would be consistent with your github-actions configuration.
  • Sets a separate open-pull-requests-limit for each group, which can be tuned independently in the future.
  - package-ecosystem: npm
    directories:
      - /web
      - /site
    schedule:
      interval: daily
      time: "06:00"
      timezone: Etc/UTC
    commit-message:
      prefix: "chore"
    groups:
      minor-and-patch:
        update-types: [minor, patch]
    open-pull-requests-limit: 10
    reviewers:
      - Aureliolo
    labels:
      - type:chore

  - package-ecosystem: npm
    directory: /.github
    schedule:
      interval: daily
      time: "06:00"
      timezone: Etc/UTC
    commit-message:
      prefix: "chore"
    groups:
      minor-and-patch:
        update-types: [minor, patch]
    open-pull-requests-limit: 5
    reviewers:
      - Aureliolo
    labels:
      - type:ci


- package-ecosystem: npm
directory: /.github
schedule:
interval: daily
time: "06:00"
timezone: Etc/UTC
commit-message:
prefix: "ci"
groups:
minor-and-patch:
update-types: [minor, patch]
open-pull-requests-limit: 5
reviewers:
- Aureliolo
labels:
- type:ci

- package-ecosystem: docker
directory: /docker/backend
schedule:
Expand Down
Loading
Loading