fix(blog): restore Community Meeting Calendar link in Wizard post - #659
Merged
Conversation
The link-repair pass left this one with an empty target, which also invalidated the source digest recorded by the four translations of the post and has kept i18n-lint red on main since. Restoring the original line brings the digest back to its recorded value, so the translations are correct as they stand and none of them needs to be refreshed. Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: tym83 <6355522@gmail.com>
Timur Tukaev (tym83)
requested review from
Andrei Kvapil (kvaps),
Timofei Larkin (lllamnyp) and
myasnikovdaniil
as code owners
August 19, 2026 13:09
✅ Deploy Preview for cozystack ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
|
Important
This repository does not receive automatic reviews because it has fewer than 10 stars. ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
Summary
Fixes the empty link in the Wizard announcement post, which has kept
i18n-lintred onmainsince 18 August.What
One line in
content/en/blog/2026-05-19-introducing-cozystack-wizard/index.md:Why
The link-repair pass in
chore(blog): repair front matter, links and bundle namesleft this target empty. It is the only empty link incontent/— the rest of that pass is intact.The side effect was less obvious. Changing the English source changed its sha256, which no longer matched the
source_digestrecorded by the four translations of the post (de,hi,ru,zh-cn).hack/check-i18n.shreported them as stale translations, andi18n-linthas failed on every push tomainand on every pull request since.Restoring the original line returns the file to digest
6f37e3e12783a4e331d4df3ee4ad46b966b2916d69d0598b0c140733f4b58a41, which is exactly the value the four translations record. So the translations were never stale — the source was broken — and refreshing their digests would have papered over a real regression rather than fixing it.Verification