build(deps): ignore TypeScript majors until typescript-eslint supports them - #228
Merged
Conversation
typescript-eslint's newest release (8.66.0) pins typescript >=4.8.4 <6.1.0, so a TS-major dependabot PR can only ever be red — #224 (TS 7.0.2) failed both Frontend Build and Frontend Lint on typescript-estree crashing. Ignore semver-major for typescript; the comment marks when to lift it.
There was a problem hiding this comment.
Pull request overview
This PR updates Dependabot configuration for the npm ecosystem (/web) to prevent Dependabot from opening TypeScript major upgrade PRs that are currently incompatible with the typescript-eslint toolchain constraints, reducing guaranteed-red upgrade noise.
Changes:
- Add a Dependabot
ignorerule to skiptypescriptsemver-major updates for the/webnpm update job. - Document the rationale for the ignore rule inline in
.github/dependabot.yml.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
The peer pin is <6.1.0, so TS 6.1 — a semver-minor — is just as incompatible as TS 7; ignoring only majors would still let a guaranteed- red 6.1 PR through. Patches remain allowed, and the comment now names the exact command to check before lifting the rule.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Follow-up to closing #224. typescript-eslint 8.66.0 (latest) pins
typescript >=4.8.4 <6.1.0; until it publishes support for the next TS major, every TS-major dependabot PR is guaranteed red. The comment in the config marks exactly when to remove the rule.Config-only; no CI-relevant paths — only the ungated jobs (gitleaks, security-gate) run, required checks skip-pass.