Fix validation errors introduced in #1127 - #1129
Open
GitWave22 wants to merge 1 commit into
Open
Conversation
Three issues left main failing CI: - data/projects/n/netlink.yaml had name: netlinklabs, which did not match its filename. Renamed the file to netlinklabs.yaml, since netlinklabs matches the project's GitHub org and is the slug consumers key on. - data/projects/b/brix.yaml claimed https://github.com/inverternetwork, which is already claimed by inverternetwork.yaml, tripping the duplicate check. Brix has no GitHub org of its own, so the field is removed. - data/projects/z/zora.yaml used single-quoted strings where Prettier wants double quotes. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
GitWave22
temporarily deployed
to
external-prs-app
July 27, 2026 13:02 — with
GitHub Actions
Inactive
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.
mainis currently failing CI. Three separate issues, all introduced in e5142b7 (#1127), blockpnpm lintandpnpm validatefor every PR opened since.1.
data/projects/n/netlink.yaml— filename does not matchnameFixed by renaming the file to
netlinklabs.yamlrather than changing thenamefield:netlinklabsmatches the project's GitHub org (github.com/netlinklabs), which is the preferred naming pattern, and the slug is what downstream consumers key on. The project has no logo file, so nothing else needed moving.2.
data/projects/b/brix.yaml— duplicate GitHub URLbrix.yamlclaimedhttps://github.com/inverternetwork, which belongs toinverternetwork.yaml. These are distinct projects — Brix brings emerging-market real-world yield onchain, Inverter is a token-economy protocol whose tech Brix appears to build on.Brix has no GitHub org of its own that I could verify (
brix.moneylinks to none;github.com/brixis an unrelated project atbrix.github.io), so the incorrectgithubfield is removed rather than reassigned.githubis optional in the schema. Happy to point it at the right org if a maintainer or the Brix team knows it.3.
data/projects/z/zora.yaml— Prettier formattingSingle-quoted strings where Prettier wants double quotes. Purely cosmetic — I verified the parsed YAML is identical before and after.
Verification
Run locally against this branch:
validate-projects—Success! Validated 7090 projectsvalidate-logos—Success! Validated 4118 logo filesvalidate-collections—Success! Validated 117 collectionstsc --noEmit— cleanprettier --check '**/*.{ts,yaml}'—All matched files use Prettier code style!No project data is changed beyond the three fixes above.
Found while preparing #1128; that PR is red for these same reasons and should go green once this merges.
🤖 Generated with Claude Code