Skip to content

Commit a8b6b38

Browse files
Updated grep to exclude tier0
Signed-off-by: Natalia Luzuriaga <[email protected]>
1 parent 01d2ac6 commit a8b6b38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/checklistMarkdownToPDF.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ jobs:
3131
ALL_CHANGED_FILES: ${{ steps.get-dirs.outputs.all_changed_files }}
3232
run: |
3333
# Obtain changed tier directories and format into array
34-
DIRS=$(echo "$ALL_CHANGED_FILES" | grep -oE 'tier[^ /]*' | sed 's/^/"/; s/$/"/' | paste -sd, -)
34+
DIRS=$(echo "$ALL_CHANGED_FILES" | grep -oE 'tier[1-4]'| grep -oE 'tier[^ /]*' | sed 's/^/"/; s/$/"/' | paste -sd, -)
35+
echo "$DIRS"
3536
3637
# Output the array
3738
TIER_DIRS="[$DIRS]"

0 commit comments

Comments
 (0)