Skip to content

Commit fb2b81a

Browse files
authored
Update docscheck.sh (#8813)
1 parent d99fe62 commit fb2b81a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

scripts/docscheck.sh

+10-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ for doc in $docs; do
2727
fi
2828
;;
2929

30+
"ephemeral-resources")
31+
# Ephemeral resources require a subcategory
32+
grep "^subcategory: " "$doc" > /dev/null
33+
if [[ "$?" == "1" ]]; then
34+
echo "Doc is missing a subcategory: $doc"
35+
error=true
36+
fi
37+
;;
38+
3039
"functions")
3140
# Functions require a page_title
3241
grep "^page_title: " "$doc" > /dev/null
@@ -39,7 +48,7 @@ for doc in $docs; do
3948
*)
4049
error=true
4150
echo "Unknown category \"$category\". " \
42-
"Docs can only exist in r/, d/, or guides/ folders."
51+
"Docs can only exist in r/, d/, ephemeral-resources/, functions/ or guides/ folders."
4352
;;
4453
esac
4554
done

0 commit comments

Comments
 (0)