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

Dependabot: ignore electron & TypeScript major bumps #6746

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
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ updates:
# we ignore everything higher than 11.
dependency-name: "@nuxtjs/eslint-config-typescript"
versions: [ ">11" ]
- # Electron major bumps are too complicated; we need to do those manually.
dependency-name: "electron"
update-types: [ "version-update:semver-major" ]
- # TypeScript bumping has issues with our code right now.
# See https://github.com/microsoft/TypeScript/issues/56628
dependency-name: "typescript"
update-types: [ "version-update:semver-major" ]
- # node-fetch 3+ requires ECMAScript modules, but Electron doesn't
# support that. See https://github.com/electron/electron/issues/21457
dependency-name: "node-fetch"
Expand Down
Loading