File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ jobs:
16
16
uses : actions/checkout@v4
17
17
18
18
- name : Make script executable
19
- run : chmod +x . scripts/badger.sh
19
+ run : chmod +x scripts/badger.sh
20
20
21
21
- name : Run badge finder script
22
22
id : find_badges
23
23
run : |
24
24
# Run the script and capture output
25
- SCRIPT_OUTPUT=$(./ scripts/badger.sh)
25
+ SCRIPT_OUTPUT=$(scripts/badger.sh)
26
26
27
27
# Escape the output for JSON and store in GitHub output
28
28
# Replace newlines with \n and escape quotes
Original file line number Diff line number Diff line change @@ -53,9 +53,9 @@ for component in "${components[@]}"; do
53
53
if [ -n " $file " ]; then
54
54
slug=$( extract_slug_from_file " $file " )
55
55
if [[ " $slug " == \[ no\ slug\] * ]]; then
56
- echo " $slug "
56
+ echo " • $slug "
57
57
else
58
- echo " https://clickhouse.com/docs$slug "
58
+ echo " • https://clickhouse.com/docs$slug "
59
59
fi
60
60
fi
61
61
done <<< " $files"
You can’t perform that action at this time.
0 commit comments