From ef06a432392648761af62c9b270feb8038984cc2 Mon Sep 17 00:00:00 2001 From: Alexandre Plateau Date: Sun, 22 Sep 2024 14:19:46 +0200 Subject: [PATCH] fix(ci): adding glob after excluded path --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 17d4db2..6a754c2 100644 --- a/action.yaml +++ b/action.yaml @@ -30,7 +30,7 @@ runs: IFS=',' read -ra EXC <<< "${{ inputs.exclude }}" for i in "${EXC[@]}"; do # process "$i" - exclusions="$exclusions -not -path $i" + exclusions="$exclusions -not -path $i/*" echo $i done fi