We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 425292d commit 005d504Copy full SHA for 005d504
.github/workflows/potential-redirects-or-partials.yml
@@ -96,7 +96,8 @@ jobs:
96
This PR updates partial files, which are bits of content used across multiple files."
97
for path in $PARTIAL_FILES; do
98
comment_body="$comment_body
99
- - [ ] [$path](https://developers.cloudflare.com/style-guide/components/render/?partial=$path)"
+ clean_path=$(echo "$path" | sed -e 's/"//g' -e 's/^\///' -e 's/\/$//')
100
+ - [ ] \`$clean_path\` [link]](https://developers.cloudflare.com/style-guide/components/render/?partial=$clean_path)"
101
done
102
fi
103
0 commit comments