Skip to content

fix(scripts): repoint checks at the .adoc files that exist - #59

Merged
hyperpolymath merged 1 commit into
mainfrom
fix/repoint-scripts-at-adoc
Aug 26, 2026
Merged

fix(scripts): repoint checks at the .adoc files that exist#59
hyperpolymath merged 1 commit into
mainfrom
fix/repoint-scripts-at-adoc

Conversation

@hyperpolymath

Copy link
Copy Markdown
Owner

The .md.adoc documentation migration moved these files but never updated the scripts that read them, so every check naming a .md has been operating on a file that no longer exists.

Repointed: CHANGELOG.md->CHANGELOG.adoc CODE_OF_CONDUCT.md->CODE_OF_CONDUCT.adoc CONTRIBUTING.md->CONTRIBUTING.adoc MAINTAINERS.md->MAINTAINERS.adoc QUICKSTART.md->QUICKSTART.adoc SECURITY.md->SECURITY.adoc

Three failure modes were in play across the estate, all fixed by the same change:

shape effect
check "X.md exists" "[ -f X.md ]" hard fail — can never pass
[ -f X.md ] && ((doc_score++)) silently scores lower
if [ -f X.md ]; then …greps… fi silent skip — the block never runs, so the gate reports success by not checking

Labels are repointed too, so failure messages name the file actually inspected. Where a script did git add … X.md, that is fixed as well — it would have failed at release time.

Only tokens whose .adoc twin exists here were rewritten; anything without a twin was left for separate triage.

Found by an estate-wide sweep of 454 repos: 56 such checks across 18 repos. Same class as hyperpolymath/Axiom.jl#82.

The .md -> .adoc documentation migration moved these files but never updated
the scripts that READ them, so every check naming a .md has been operating on
a file that no longer exists.

Repointed: CHANGELOG.md->CHANGELOG.adoc CODE_OF_CONDUCT.md->CODE_OF_CONDUCT.adoc CONTRIBUTING.md->CONTRIBUTING.adoc MAINTAINERS.md->MAINTAINERS.adoc QUICKSTART.md->QUICKSTART.adoc SECURITY.md->SECURITY.adoc

Three failure modes were in play across the estate, all fixed by the same
change:
  * hard fail   - 'check "X.md exists" "[ -f X.md ]"' can never pass
  * wrong score - '[ -f X.md ] && ((doc_score++))' silently scores lower
  * SILENT SKIP - 'if [ -f X.md ]; then ...greps... fi' skips the whole block,
                  so the checks inside never run and the gate reports success
                  by not checking at all

Human-readable labels are repointed too, so failure messages name the file that
is actually inspected. Where a script did 'git add ... X.md', that is fixed as
well - it would have failed at release time.

Only tokens whose .adoc twin exists in this repository were rewritten; anything
without a twin was left untouched for separate triage.

Found by an estate-wide sweep of 454 repos: 56 such checks across 18 repos.
Same defect class as hyperpolymath/Axiom.jl#82.
@coderabbitai

coderabbitai Bot commented Aug 26, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 24048a38-9aef-48a9-8482-58c159c75c9b

📥 Commits

Reviewing files that changed from the base of the PR and between 5cbd234 and 21ae285.

📒 Files selected for processing (1)
  • scripts/rsr-verify.sh

Included review availability: Your plan provides up to 1 included review per hour; 0 remain after this review.

📜 Recent review details
⏰ Context from checks skipped due to timeout. (1)
  • GitHub Check: Codacy Static Code Analysis
🔇 Additional comments (1)
scripts/rsr-verify.sh (1)

67-71: LGTM!

Also applies to: 131-131, 172-173, 184-187, 200-200


📝 Walkthrough

Summary by CodeRabbit

  • Documentation
    • Updated documentation verification to validate the current AsciiDoc files for key project guidance, including security, contribution, conduct, maintenance, changelog, and quickstart information.

Walkthrough

The verification script now checks AsciiDoc documentation files for required files and policy content. Markdown references were replaced for security, contribution, conduct, maintainer, changelog, TPCF, emotional-safety, and quickstart checks.

Changes

AsciiDoc verification

Layer / File(s) Summary
Update documentation checks
scripts/rsr-verify.sh
Existence and content checks now use the relevant .adoc documentation files, including SECURITY.adoc, CONTRIBUTING.adoc, CODE_OF_CONDUCT.adoc, and QUICKSTART.adoc.

Estimated code review effort: 1 (Trivial) | ~5 minutes

Merge Risk: ⚪ Minimal · up to 21ae2

This localized script update repoints checks to the existing documentation files, with no actionable merge-blocking risk remaining after normal checks and review.

Suggested reviewers: metadatastician

Poem

A rabbit checks each document sign,

AsciiDoc paths now align,
Security and conduct stand clear,
Quickstart paths are correct here,
The verification carrots shine.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the main change: updating script checks to use the existing .adoc files.
Description check ✅ Passed The description directly explains the .md to .adoc migration issue, lists the updated files, and describes the affected failure modes.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check. Docstring coverage is scoped to functions touched by this diff. Analyzed 0 functions across 1…
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Full details: Docstring Coverage

Explanation

No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check. Docstring coverage is scoped to functions touched by this diff. Analyzed 0 functions across 1 files.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@sonarqubecloud

Copy link
Copy Markdown

@gitar-bot

gitar-bot Bot commented Aug 26, 2026

Copy link
Copy Markdown

Important

You are using the Gitar free plan. Upgrade to unlock code review, CI analysis, auto-apply, custom automations, and more.

Gitar

@codacy-production

Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

AI Reviewer: first review requested successfully. AI can make mistakes. Always validate suggestions.

Run reviewer

TIP This summary will be updated as you push new changes.

@codacy-production codacy-production Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR updates the rsr-verify.sh script to target AsciiDoc (.adoc) files instead of Markdown (.md) files, ensuring compliance checks for existence and content validation remain functional after the documentation migration. While the change aligns with the migration intent, there is a mismatch between the PR description and the provided code: the description mentions updating git add commands, but the diff for rsr-verify.sh contains no such logic. Additionally, there are no accompanying tests or coverage data to verify that the script correctly handles the new file extensions and their contents.

About this PR

  • The PR description explicitly states that 'Where a script did git add … X.md, that is fixed as well', but the provided diff for 'rsr-verify.sh' does not contain any git commands. This suggests either a missing file in the PR or a mismatch between the description and the implementation.
  • There are no test updates or coverage data provided to verify that the script changes work as intended in an environment with .adoc files.

Test suggestions

  • Verify rsr-verify.sh successfully passes existence checks when .adoc files are present.\n- [ ] Verify grep-based content checks correctly identify required strings within .adoc files.\n- [ ] Verify the script fails/warns as expected when a required .adoc file is missing or lacks mandatory content.
Prompt proposal for missing tests
Consider implementing these tests if applicable:
1. Verify rsr-verify.sh successfully passes existence checks when .adoc files are present.\n- [ ] Verify grep-based content checks correctly identify required strings within .adoc files.\n- [ ] Verify the script fails/warns as expected when a required .adoc file is missing or lacks mandatory content.

TIP Improve review quality by adding custom instructions
TIP How was this review? Give us feedback

@hyperpolymath
hyperpolymath merged commit 6398e1a into main Aug 26, 2026
4 checks passed
@hyperpolymath
hyperpolymath deleted the fix/repoint-scripts-at-adoc branch August 26, 2026 16:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant