Skip to content

Commit 399e80e

Browse files
Sync check-markdown-task with upstream template
1 parent eb01e48 commit 399e80e

File tree

4 files changed

+174
-285
lines changed

4 files changed

+174
-285
lines changed

.github/workflows/check-markdown-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
RESULT="false"
6161
fi
6262
63-
echo "::set-output name=result::$RESULT"
63+
echo "result=$RESULT" >> $GITHUB_OUTPUT
6464
6565
lint:
6666
needs: run-determination

Taskfile.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ tasks:
176176
# npx --call uses the native shell, which makes it too difficult to use npx for this application on Windows,
177177
# so the Windows user is required to have markdown-link-check installed and in PATH.
178178
if ! which markdown-link-check &>/dev/null; then
179-
echo "markdown-link-check not found or not in PATH. Please install: https://github.com/tcort/markdown-link-check#readme"
179+
echo "markdown-link-check not found or not in PATH."
180+
echo "Please install: https://github.com/tcort/markdown-link-check#readme"
180181
exit 1
181182
fi
182183
# Default behavior of the task on Windows is to exit the task when the first broken link causes a non-zero

0 commit comments

Comments
 (0)