From 7e1edf039d8c5497df2717341ac9bda3a4c0a4af Mon Sep 17 00:00:00 2001 From: brovatten Date: Sat, 6 Jun 2026 19:15:01 +0200 Subject: [PATCH 1/2] docs: gate /codeboarding comment runs in the README example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restore the comment-text check (dropped in the restyle): without it a runner spins up for every collaborator PR comment. Single startsWith() — exactness is enforced by the action's internal guard. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5c627ba..f85dec7 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ jobs: if: > (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || (github.event_name == 'issue_comment' && github.event.issue.pull_request != null && + startsWith(github.event.comment.body, '/codeboarding') && contains(fromJSON('["OWNER","MEMBER","COLLABORATOR"]'), github.event.comment.author_association)) steps: - uses: CodeBoarding/CodeBoarding-action@v1 From c98e273a87183c12839450bbfb2ec907394ec436 Mon Sep 17 00:00:00 2001 From: brovatten Date: Sat, 6 Jun 2026 19:15:01 +0200 Subject: [PATCH 2/2] chore: rename action to "CodeBoarding Review" --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index a142d58..416a3ce 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ -name: 'CodeBoarding Architecture Diff (Mermaid)' -description: 'Posts a PR comment with a Mermaid architecture diagram showing which components changed (green added / yellow modified / red deleted) — nodes and arrows.' +name: 'CodeBoarding Review' +description: 'Visual system-design review on pull requests: a Mermaid diagram of the architectural changes — added, modified, and deleted components and relations.' author: 'CodeBoarding' branding: