From ab3f41219ab1e2d05fbcaa13a66479fb2d92b23c Mon Sep 17 00:00:00 2001 From: Musiker15 Date: Thu, 9 Jul 2026 17:00:59 +0200 Subject: [PATCH] chore(deps): ignore Tailwind CSS major bumps The branding system depends on the Tailwind v3 HSL token format, so a v4 major has to be a deliberate migration rather than an automated Dependabot bump. --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5082330..7969ce7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -42,6 +42,10 @@ updates: # Do Next.js major bumps manually - dependency-name: "next" update-types: ["version-update:semver-major"] + # Stay on Tailwind CSS v3 on purpose: the branding system depends on the + # v3 HSL token format, so a v4 major must be a deliberate migration. + - dependency-name: "tailwindcss" + update-types: ["version-update:semver-major"] # --- GitHub Actions ------------------------------------------------------ - package-ecosystem: "github-actions"