Skip to content

Commit

Permalink
chore(dependabot): group all dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkdev98 committed Aug 18, 2023
1 parent e0e9f6e commit b7186ee
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
25 changes: 12 additions & 13 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,18 @@ updates:
open-pull-requests-limit: 10
versioning-strategy: increase
groups:
aws-sdk:
patterns:
- "@aws-sdk/*"
babel:
patterns:
- "@babel/*"
typescript-eslint:
patterns:
- "@typescript-eslint/*"
typescript-types:
patterns:
- "@types/node"
- "@types/react"
development:
dependency-type: "development"
production-compat:
dependency-type: "production"
update-types:
- "minor"
- "patch"
production-breaking:
dependency-type: "production"
update-types:
- "major"

- package-ecosystem: github-actions
directory: "/"
schedule:
Expand Down
7 changes: 5 additions & 2 deletions scripts/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,14 @@ async function main(logger) {
!it.title.includes("build(deps-dev)") &&
!it.title.includes("@types/node") &&
!it.title.includes("typescript-types group") &&
!it.title.includes("sync generated doc files")
!it.title.includes("sync generated doc files") &&
!it.title.includes("development group")
);
});

const splitCommits = splitGroupedDependencyBumps(relevantCommits);
const splitCommits = splitGroupedDependencyBumps(relevantCommits).filter(
(it) => !it.title.includes("@types/"),
);
const commits = combineCommits(splitCommits);

decorateCommits(commits);
Expand Down

0 comments on commit b7186ee

Please sign in to comment.