From 8b2e72215ea3b704ed6467dac9507cd64db70c5f Mon Sep 17 00:00:00 2001 From: uipreliga Date: Tue, 4 Aug 2026 11:13:30 -0700 Subject: [PATCH] chore(action): rename Marketplace listing to coder_eval, add author MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `coder-eval` is rejected at publish time — the Marketplace name must be unique across actions, users AND organizations, and github.com/coder-eval is an unrelated org squatting the name since 2023. `name` is display-only: consumers reference the action by repo path (`uses: UiPath/coder_eval@v0`), so this is not a breaking change and no docs or workflow examples need updating. Also sets `author: UiPath`, which Marketplace surfaces on the listing and which was previously absent. Matches the authorship already declared in pyproject.toml and NOTICE, and the repo owner Marketplace derives "By UiPath" from. Co-Authored-By: Claude Opus 5 (1M context) --- action.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 1d44eb76..6dba9d65 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,12 @@ -name: coder-eval +# `name` is the GitHub Marketplace listing title and must be globally unique +# across Marketplace actions, users, AND organizations. `coder-eval` is taken by +# an unrelated squatted org (github.com/coder-eval), so the listing uses the +# underscored repo name instead. This value is display-only: consumers reference +# the action by repo path (`uses: UiPath/coder_eval@v0`), never by this name. +name: coder_eval +# Matches the authorship the project already declares in pyproject.toml +# (`authors = [{ name = "UiPath", ... }]`) and NOTICE (`© 2026 UiPath`). +author: UiPath description: Run coder-eval evaluation tasks as a CI gate, with JUnit XML output and a job-summary report. branding: icon: check-circle