From d2346fbf8bd4605cce73e8111f63a40d785ed78b Mon Sep 17 00:00:00 2001 From: Matthew Watkins Date: Tue, 28 Jul 2026 14:14:06 +0100 Subject: [PATCH] Chore: Default path_prefix to the repository root Every sibling action in this organisation declares path_prefix with a '.' default; this one omitted it, so the interface did not state where the action looks by default and callers had to infer it. Behaviour is unchanged. The action already normalised an empty value to '.' internally, so this makes the declared interface match what the implementation always did, and lets GitHub surface the default in the Actions UI. Co-authored-by: Claude Signed-off-by: Matthew Watkins --- action.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yaml b/action.yaml index 09af70b..88ba1bb 100644 --- a/action.yaml +++ b/action.yaml @@ -25,6 +25,7 @@ inputs: description: 'Directory location containing Python project code' # type: string required: false + default: '.' parallel_tests: # Note: installs and uses pytest-xdist description: 'Parallel pytest/nbmake processes'