Skip to content

Commit

Permalink
chore(ci): trying to figure out why the exclusions do not work
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperFola committed Sep 22, 2024
1 parent 3f2370b commit 2854bd5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ runs:
run: |
exclusions=''
if [ -z "${{ inputs.exclude }}" ]; then
echo "Exclusions: $${{ inputs.exclude }}"
IFS=',' read -ra EXC <<< "${{ inputs.exclude }}"
for i in "${EXC[@]}"; do
# process "$i"
exclusions="$exclusions -not -path $i"
done
for i in "${EXC[@]}"; do
# process "$i"
exclusions="$exclusions -not -path $i"
echo $i
done
fi
echo "Exclusions: $exclusions"
failures=0
while read -rd $'\0' file; do
Expand Down

0 comments on commit 2854bd5

Please sign in to comment.