Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore major version updates to typedoc-plugin-markdown and eslint #1077

Merged
merged 2 commits into from
Aug 12, 2024
Merged
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
9 changes: 5 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,29 @@ updates:
- package-ecosystem: "npm"
# Look for `package.json` and `lock` files in the `root` directory.
directory: "/"
# Check the npm registry for updates every day (weekdays).
schedule:
interval: "weekly"
ignore:
- dependency-name: "eslint"
update-types: ["version-update:semver-major"]
- dependency-name: "typedoc-plugin-markdown"
update-types: ["version-update:semver-major"]
# Enable version updates for the website tooling.
- package-ecosystem: "pip"
# Look for `package.json` and `lock` files in the `root` directory.
directory: "/docs"
# Check the npm registry for updates every day (weekdays).
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: "/"
# Check the npm registry for updates every day (weekdays).
schedule:
interval: "weekly"
# Enable version updates for embedded 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"
# Check the npm registry for updates every day (weekdays).
schedule:
interval: "weekly"
Loading