From 4d85dc2d59732cb2b95d2ee5acb3fe32736cdccd Mon Sep 17 00:00:00 2001 From: dakshcodez Date: Sat, 15 Aug 2026 15:21:20 +0530 Subject: [PATCH 1/2] Move action.yml to repo root for GitHub Marketplace eligibility GitHub Marketplace only discovers and lists an action whose action.yml sits at the repository root - a subdirectory copy (where ours lived, packages/action/action.yml, matching the monorepo's package layout) is valid for consumers who reference it via "uses: owner/repo/path@ref", but never shows up as listable on the Marketplace itself. Moved it to the root and updated runs.main from 'dist/index.js' to 'packages/action/dist/index.js', since the path is now resolved relative to the action's root (the repo root), not the subdirectory action.yml used to live in. The actual implementation stays under packages/action/ unchanged - only the metadata file's location and that one path moved. No other file referenced the old subdirectory path. Verified lint/typecheck/build all still pass. --- packages/action/action.yml => action.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename packages/action/action.yml => action.yml (100%) diff --git a/packages/action/action.yml b/action.yml similarity index 100% rename from packages/action/action.yml rename to action.yml From 9492c54df8d4dd1a4392cb07721ec990214472fe Mon Sep 17 00:00:00 2001 From: dakshcodez Date: Sat, 15 Aug 2026 15:22:49 +0530 Subject: [PATCH 2/2] Fix runs.main path that got dropped from the previous commit The previous commit's git add invocation silently failed (passed a second pathspec, packages/action/action.yml, that no longer existed after the git mv, which aborted the whole add without adding anything) - so the actual path fix in the working tree never made it into the commit, even though it had already been applied and verified locally. Committing the real fix now: runs.main needs to be 'packages/action/dist/index.js', not the old 'dist/index.js', now that action.yml lives at the repo root instead of packages/action/. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b2a1e6c..907d0fa 100644 --- a/action.yml +++ b/action.yml @@ -26,4 +26,4 @@ branding: color: 'blue' runs: using: 'node20' - main: 'dist/index.js' + main: 'packages/action/dist/index.js'