fix(content-lane): canonicalize issue-body path tokens in checkContentLaneDeliverable - #9893
fix(content-lane): canonicalize issue-body path tokens in checkContentLaneDeliverable#9893bitfathers94 wants to merge 1 commit into
Conversation
…tLaneDeliverable The spec's entry/provider patterns are compiled by globToRegExp against a canonicalized (lowercased, no i flag) path, so an issue body writing the target file with any capitalization produced no mentionedPath and the deliverable gate silently reported not-applicable — letting a test-only PR close a content issue without delivering the content. Test each extracted token via canonicalize(), mirroring classifyRegistryPrScope's matchesPattern, while keeping the original token for the public-comment mentionedPath. Already-lowercase paths are byte-identical to before.
|
Caution 🛑 LoopOver review result - reject/close recommendedReview updated: 2026-07-29 19:29:08 UTC
Review summary Nits — 3 non-blocking
Why this is blocked
📋 Copy for AI agents — paste into your coding agentDecision drivers
Context & advisory signals — never blocks the verdict
Linked issue satisfactionAddressed Review context
Contributor next steps
Signal definitions
🧪 Chat with LoopOverAsk LoopOver a question about this PR directly in a comment — grounded only in the same cached, public-safe facts shown above, never a new claim.
Full command reference: https://loopover.ai/docs/loopover-commands 🧪 Experimental — new and may change. 🟩 Safe / merged · 🟦 Advisory · 🟨 Held for review · 🟥 Blocked / closed 💰 Earn for open-source contributions like this. Gittensor lets GitHub contributors earn for the work they already do — register to start earning →. Checked by LoopOver, a quiet PR intelligence layer for OSS maintainers.
|
|
Superagent didn't find any vulnerabilities or security issues in this PR. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #9893 +/- ##
==========================================
+ Coverage 79.29% 79.39% +0.09%
==========================================
Files 281 282 +1
Lines 58566 58842 +276
Branches 6785 6903 +118
==========================================
+ Hits 46440 46716 +276
Misses 11843 11843
Partials 283 283
Flags with carried forward coverage won't be shown. Click here to find out more.
|
|
LoopOver is closing this pull request on the maintainer's behalf (Linked issue's expected content was never delivered). This is an automated maintenance action — to pursue this change, please open a new pull request with the issues resolved. Closed PRs may be analyzed later to improve review accuracy, but they are not automatically reopened or re-reviewed. |
fix(content-lane): canonicalize issue-body path tokens in checkContentLaneDeliverable
The spec's entry/provider patterns are compiled by globToRegExp against a
canonicalized (lowercased, no i flag) path, so an issue body writing the target
file with any capitalization produced no mentionedPath and the deliverable gate
silently reported not-applicable — letting a test-only PR close a content issue
without delivering the content. Test each extracted token via canonicalize(),
mirroring classifyRegistryPrScope's matchesPattern, while keeping the original
token for the public-comment mentionedPath. Already-lowercase paths are
byte-identical to before.
Closes #9667