Skip to content

Commit

Permalink
CI: group dependency updates #572
Browse files Browse the repository at this point in the history
Problem:
Dependency updates can be noisy. Unmerged dependency updates can block
other updates if the max is reached.

Solution:
- Use dependabot "groups" feature: https://github.blog/2023-08-24-a-faster-way-to-manage-version-updates-with-dependabot/
    - Group updates to "@types/" packages.
    - Group updates to "jest" packages.

ref aws/aws-toolkit-vscode@06507c3
  • Loading branch information
justinmk3 authored Oct 10, 2023
1 parent 2cd81dd commit ebe7d3c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ updates:
directory: "/telemetry/vscode"
schedule:
interval: "daily"
groups:
jest:
dependency-type: 'development'
patterns:
- '*jest'
types:
dependency-type: 'development'
patterns:
- '@types/*'

- package-ecosystem: "gradle"
directory: "/telemetry/jetbrains"
Expand Down

0 comments on commit ebe7d3c

Please sign in to comment.