We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e5742 commit 17a18c1Copy full SHA for 17a18c1
.github/workflows/validate-manifest.yml
@@ -20,7 +20,7 @@ jobs:
20
if test -f $item; then
21
echo "$item exists"
22
else
23
- echo "Error: $item does not exist"
+ echo "::error file=manifest.json,title=Invalid-Manifest::$item does not exist"
24
exit 1
25
fi
26
done
@@ -29,7 +29,7 @@ jobs:
29
for item in $(jq -c -r '.lists.[].url | select( . != null )' manifest.json); do
30
urlstatus=$(curl -H 'Cache-Control: no-cache' -o /dev/null --silent --head --write-out "$URL %{http_code}" "$item")
31
if [ $urlstatus -ne 200 ]; then
32
- echo "$item has HTTP status $urlstatus"
+ echo "::error file=manifest.json,title=Invalid-Manifest::$item has HTTP status of $urlstatus"
33
34
35
0 commit comments