We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac261c6 commit 6769e81Copy full SHA for 6769e81
.github/workflows/notifyOnMdChanges.yml
@@ -43,16 +43,14 @@ jobs:
43
echo "branch_name=${branch_name},repo_url=${repo_url}"
44
changed_files=()
45
while IFS= read -r file; do
46
+ echo "$file"
47
- echo "1111"
48
if [[ "$file" =~ \.md$ ]]; then
49
- echo "2222"
50
full_url="${repo_url}/${file}"
51
changed_files+=("$full_url")
52
fi
53
- echo "3333"
54
done < changed_files.txt
55
- echo "4444"
+
56
if [ ${#changed_files[@]} -gt 0 ]; then
57
echo "Changed Markdown files: ${changed_files[@]}"
58
echo "::set-output name=changed_files::$(IFS=,; echo "${changed_files[*]}")"
0 commit comments