chore: track README_EN.md in .all-contributorsrc files array#22
Merged
Conversation
After #19 introduced README_EN.md, the all-contributors-cli only knew about README.md, so adding a contributor (e.g. #20) silently drifted the English README out of sync — fixed manually in #21. Adding README_EN.md to the "files" array lets future `npx all-contributors-cli add <login> <types>` update both files in one invocation. Verified locally with `npx all-contributors-cli generate` — produced no diff on either README (no-op regenerate), confirming both files' markers are recognized. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Fix the root cause that made #21 necessary:
.all-contributorsrcwas only trackingREADME.md, sonpx all-contributors-cli add ...silently driftedREADME_EN.mdout of sync after #19 introduced it.Adding
README_EN.mdto thefilesarray lets future contributor adds update both READMEs in one invocation, no manual sync PR.Verification
Ran
npx all-contributors-cli generatelocally after the change — produced an empty diff on both READMEs (no-op regenerate), confirming both files' BADGE / LIST markers are recognized by the tool with the new config.$ npx all-contributors-cli@latest generate $ git diff --stat README.md README_EN.md (empty — both files already in sync, config processes both correctly)