ci: run pythinker-code checks on every PR; align release docs - #17
Merged
Conversation
…cess AGENTS.md documented a stale Keep-a-Changelog style that no longer matches the repo: a MAJOR.MINOR.PATCH scheme with 1.x examples, bump-* branches, renaming [Unreleased] to [X.Y] - YYYY-MM-DD, and git tag X.Y / git push --tags. The actual process is 0.MINOR.PATCH, release/X.Y.Z branches, a retained empty ## Unreleased plus a ## X.Y.Z (YYYY-MM-DD) section, the npm run sync step for the docs changelog, and annotated vX.Y.Z tags. Correct the Versioning and Release workflow sections to match. Also drop the now-dead title-rewrite and subsection-strip transforms in sync-changelog.mjs: the root CHANGELOG already uses ## X.Y.Z (date) headers and ### What changed in this release subsections, so both regexes were no-ops. The generated docs changelog is byte-identical before and after this change.
Contributor
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughUpdates repository versioning to a ChangesVersioning and Release Process
CI Workflow
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Suggested labels
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
check / test (3.x) / release-validate are required status checks, but the pull_request trigger was path-filtered to code paths. Docs-only (and sdks/**- or examples/**-only) PRs never ran them, so the required contexts never reported and the PR stayed BLOCKED under strict + enforce_admins with no clean override. Drop the pull_request path filter so these checks run on every PR: exactly one check run per context (no duplicate-context false-greens) and real signal on every change. The push trigger keeps its path filter unchanged.
…ocs-convention # Conflicts: # AGENTS.md
This was referenced May 30, 2026
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.
Follow-up to the 0.25.0 release (#14), with the robust fix for the docs-only-PR merge blocker discovered during it.
Why
CodeRabbit flagged two changelog findings during #14 that were rooted in stale guidance, not the release. And this PR (originally docs-only) surfaced a structural CI gap: the required
check/test (3.x)/release-validatecontexts are path-filtered to code paths, so docs-only (andsdks/**-/examples/**-only) PRs never run them and stayBLOCKEDunder strict branch protection +enforce_admins— with no clean override.Changes
.github/workflows/ci-pythinker-cli.yml— drop thepull_requestpath filter so the required checks run on every PR. One check run per context (no duplicate-context false-greens), real signal on every change. Thepushtrigger keeps its path filter. This is the safe fix vs. a status-shim, which risks masking real failures on mixed PRs.AGENTS.md— correct the Versioning section to the real0.MINOR.PATCHscheme and rewrite the Release workflow to match actual practice:release/X.Y.Zbranches, retained empty## Unreleased+ a new## X.Y.Z (YYYY-MM-DD)section, thenpm run syncstep for the generated docs changelog, the protected-mainPR gate, and annotatedvX.Y.Ztags.docs/scripts/sync-changelog.mjs— remove two now-dead Keep-a-Changelog transforms (bracket-title rewrite +### Added/Changed/Fixedstripper); the rootCHANGELOG.mdalready uses## X.Y.Z (date)+### What changed in this release.Verification
node --check docs/scripts/sync-changelog.mjspasses; regenerateddocs/en/release-notes/changelog.mdis byte-identical before/after the sync-script change.pull_requesttrigger unfiltered,pushpaths preserved..github/workflows/**), so the required checks report and it merges through the normal gate — no admin override.Summary by CodeRabbit
Documentation
Chores