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 e72b21c commit cd31bccCopy full SHA for cd31bcc
1 file changed
.github/workflows/check_required_files.yml
@@ -164,6 +164,11 @@ jobs:
164
# Add the list of missing and required files to the workflow output:
165
echo "::set-output name=missing_files::${missing_files[*]}"
166
echo "::set-output name=required_files::${required_files[*]}"
167
+
168
+ # Add the Markdown list of checkboxes to the workflow output after escaping to preserve newlines:
169
+ checkbox_list="${checkbox_list//'%'/'%25'}"
170
+ checkbox_list="${checkbox_list//$'\n'/'%0A'}"
171
+ checkbox_list="${checkbox_list//$'\r'/'%0D'}"
172
echo "::set-output name=checkbox_list::${checkbox_list}"
173
174
shell: bash
0 commit comments