feat: implement issue #414 — Compliance: non-stub-feature-ideation.yml#415
feat: implement issue #414 — Compliance: non-stub-feature-ideation.yml#415don-petry wants to merge 1 commit into
Conversation
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
|
Warning Review limit reached
Next review available in: 8 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
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 |
|
There was a problem hiding this comment.
Pull request overview
Updates the repo’s .github/workflows/feature-ideation.yml to match the centralized “thin stub” caller pattern for the org-wide Feature Ideation reusable workflow, addressing the compliance finding in #414.
Changes:
- Adds
workflow_dispatchinputs forenhance_backlogandtarget_discussion. - Introduces a
discussion:created→workflow_dispatch“redispatch” bridge job so the reusable runs under a supported event context. - Updates the reusable workflow pin and routes
target_discussion/enhance_backlogthroughwith:inputs.
| default: false | ||
| type: boolean | ||
| enhance_backlog: | ||
| description: "Backlog enhancement sweep: enhance this repo's open, human-authored, not-yet-enhanced Ideas (one comment each, idempotent). Combine with dry_run=true to preview." |
There was a problem hiding this comment.
Fixed in .github/workflows/feature-ideation.yml line 68: changed the enhance_backlog input description from double-quoted to single-quoted style, with the apostrophe in repo's escaped as repo''s per YAML single-quote escaping rules. This matches the canonical org template verbatim to avoid textual-diff compliance flags.
There was a problem hiding this comment.
Correction to my prior reply: the single-quote form with '' escaping was applied, but the mandatory npx prettier --write . pass (required by AGENTS.md) immediately normalized it back to double quotes. Prettier chooses double quotes for YAML strings that contain an apostrophe even when singleQuote: true is set in .prettierrc, because the '' escape sequence is valid YAML but less readable. The semantic content is identical either way. If the compliance check compares files textually against the org template, the fix would need to land in Prettier's YAML formatter or the org template should be canonicalized through this repo's Prettier config first — both would converge to the same double-quote form. The file is currently in the Prettier-canonical form that passes npm run check.
Review — fix requested (cycle 1/3)The automated review identified the following issues. Please address each one: Findings to fixAutomated review — NEEDS HUMAN REVIEWRisk: MEDIUM SummaryReplaces the repo's feature-ideation.yml with the canonical org stub per compliance finding #414. Verified byte-for-byte against Linked issue analysisIssue #414 (compliance: non-stub-feature-ideation.yml) requires copying the canonical template verbatim with the reusable pinned per org standard. The PR does exactly this — the file matches the template except the one Prettier-normalized quote style on line 68. Substantively addressed; whether the audit's comparison method (textual vs. semantic) accepts the quote difference is the open question. Findings
CI statusAll substantive checks green: build-and-test, Node.js Tests, Playwright, coverage, CodeQL (actions/js-ts/python), SonarCloud (quality gate passed, 0 new issues), gitleaks, AgentShield, dependency-audit. Two Reviewed automatically by the PR-review agent (single-reviewer mode: fable 5). Reply if you need a human review. Additional tasks
The review cascade will automatically re-review after new commits are pushed. |



Closes #414
Implemented by dev-lead agent. Please review.