ci: add guardrail for .pot file freshness#928
Draft
gitsofaryan wants to merge 6 commits into
Draft
Conversation
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.
ci: add non-blocking .pot freshness telemetry for l10n automation
Summary
This PR introduces a non-blocking CI guardrail to detect drift in localizable strings, directly addressing the "Zero-Friction" maintainer vision discussed in #893. It provides the technical foundation for automated localization syncs while ensuring that the developer workflow remains uninterrupted.
🎯 Strategic Rationale
As SeedSigner moves toward a "Zero-Friction" developer experience, the goal is to remove the burden of manual
.potmanagement from contributors. This PR is the first step in that journey:🛠️ Technical Implementation
git diff -I'^"POT-Creation-Date: ' --exit-codeto ignore auto-generated metadata noise, preventing false positives.Babelonly within the localization check step to keep the main test runner lightweight.📊 Competency Evidence
Successful Detection (Non-Blocking)
When strings are modified without updating
messages.pot, the CI correctly identifies the drift:::warning title=Stale .pot file::Localizable strings have changed...YAML Improvement (Recommended)
I have added a
GITHUB_STEP_SUMMARYto ensure the warning is visible even without digging into logs:This contribution is part of the Localization Contributor Pipeline project for Summer of Bitcoin 2026.