From ee7b8711bd8dd0954f5783b045bb929cd6db2764 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 6 Dec 2025 17:36:02 -0700 Subject: [PATCH] Clarify that package_json_file is relative to GITHUB_WORKSPACE (#184) * Clarify that package_json_file is relative to GITHUB_WORKSPACE Clarify the description for package_json_file parameter to specify that the path must be relative to the repository root. * Apply suggestion from @zkochan --------- Co-authored-by: Zoltan Kochan --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 831ced0..97dbe99 100644 --- a/action.yml +++ b/action.yml @@ -16,7 +16,7 @@ inputs: required: false default: 'null' package_json_file: - description: File path to the package.json to read "packageManager" configuration + description: File path to the package.json to read "packageManager" configuration. This path must be relative to the repository root (GITHUB_WORKSPACE). required: false default: 'package.json' standalone: