From 068dcf987ea31322ce2e93617ba6f1cd12e72d2b Mon Sep 17 00:00:00 2001 From: DataDave-Dev <153755137+DataDave-Dev@users.noreply.github.com> Date: Thu, 2 Jul 2026 12:22:28 -0600 Subject: [PATCH] fix(action): shorten the description under the Marketplace 125-char cap The GitHub Marketplace rejects an action whose description is 125+ chars. Keep the hook-vs-required-check rationale as a comment and ship a 119-char description that leads with the same hook. --- action.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 8bc183b..54c8839 100644 --- a/action.yml +++ b/action.yml @@ -1,8 +1,10 @@ name: becwright +# The Marketplace caps description at 125 chars. The full rationale: a commit +# hook can be skipped with `git commit --no-verify`; a required CI check cannot — +# this closes that gap and makes the rules infrastructure, not a suggestion. description: >- - Enforce BECs (Bound Executable Constraints) on the files a pull request changes. - A commit hook can be skipped with `git commit --no-verify`; a required CI check - cannot — so this closes that gap and makes the rules infrastructure, not a suggestion. + Enforce becwright rules (BECs) on the files a PR changes — a required CI check + that can't be skipped like a local hook. author: DataDave-Dev branding: icon: shield