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 38becf9 commit 0e7d1e5Copy full SHA for 0e7d1e5
.github/workflows/generate-project-list.yml
@@ -41,7 +41,8 @@ jobs:
41
42
for project in "${projects[@]}"; do
43
project_name=${project%/}
44
- echo "* [$project_name](./$project_name)" >> PROJECTS.md
+ safe_project_name=${project_name// /-}
45
+ echo "* [$project_name](./$safe_project_name)" >> PROJECTS.md
46
done
47
48
for file in "${exclude_files[@]}"; do
@@ -50,7 +51,7 @@ jobs:
50
51
52
# Debug output to check the content of PROJECTS.md
53
cat PROJECTS.md
-
54
+
55
- name: Commit project list
56
run: |
57
git config --global user.email "github-actions[bot]@users.noreply.github.com"
0 commit comments