Skip to content

Commit

Permalink
Add groups to simplify dependency updates (#1095)
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardsph authored Aug 23, 2024
1 parent a5a18b0 commit 6704fdb
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,45 @@ updates:
update-types: ["version-update:semver-major"]
- dependency-name: "typedoc-plugin-markdown"
update-types: ["version-update:semver-major"]
groups:
internal-tooling:
patterns:
- "@inrupt/internal-*"
- "@inrupt/jest-*"
- "@inrupt/eslint-*"
external-types:
patterns:
- "@types/*"

# Enable version updates for the website tooling.
- package-ecosystem: "pip"
# Look for `package.json` and `lock` files in the `root` directory.
directory: "/docs"
schedule:
interval: "weekly"

# Enable version updates for our CI tooling.
- package-ecosystem: "github-actions"
# For GitHub Actions, setting the directory to / will check for workflow
# files in .github/workflows.
directory: "/"
schedule:
interval: "weekly"
# Enable version updates for embedded demo app

# Enable version updates for embedded tests and demo app
- package-ecosystem: "npm"
# Look for `package.json` and `package-lock.json` files in the `e2e/browser/test-app` directory.
directory: "/e2e/browser/test-app"
# Look for `package.json` and `package-lock.json` files in the `e2e/browser/test-app` and `examples` directories.
directories:
- "/e2e/browser/test-app"
- "/examples"
schedule:
interval: "weekly"
groups:
internal-tooling:
patterns:
- "@inrupt/internal-*"
- "@inrupt/jest-*"
- "@inrupt/eslint-*"
external-types:
patterns:
- "@types/*"

0 comments on commit 6704fdb

Please sign in to comment.