From 6d31d42c34f07e2fc2139f8127d20dc1dbae2bff Mon Sep 17 00:00:00 2001 From: alphacrack <18480504+alphacrack@users.noreply.github.com> Date: Fri, 7 Aug 2026 17:36:31 +0200 Subject: [PATCH] ci: ignore typescript major bumps (pinned by the jsii toolchain) jsii pins the TypeScript compiler (jsii 6.x -> typescript ~6.0), so a TypeScript major fails the jsii build until a matching jsii major ships. PR #77 (typescript 7.0.2) is a fresh instance. Ignore typescript majors so they don't recur as unmergeable PRs; upgrade TypeScript deliberately together with jsii when the time comes. Co-Authored-By: Claude Fable 5 --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5edab1c..4b1e956 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -18,6 +18,12 @@ updates: - dependency-name: "@types/node" update-types: - version-update:semver-major + # jsii pins the TypeScript compiler (jsii 6.x -> typescript ~6.0), so a + # TypeScript major cannot build until a matching jsii major ships. Take + # them together as a deliberate toolchain upgrade. (Closed PR #77 was this.) + - dependency-name: "typescript" + update-types: + - version-update:semver-major groups: minor-and-patch: update-types: