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 aad2b60 commit e595a5cCopy full SHA for e595a5c
.github/workflows/extension-validation.yml
@@ -150,7 +150,7 @@ jobs:
150
echo "Extension validation: $EXTENSION_RESULT"
151
152
if [ "$STRUCTURE_RESULT" != "success" ] || [ "$EXTENSION_RESULT" != "success" ]; then
153
- echo "❌ One or more validation steps failed"
+ echo "❌ One or more validation steps failed. Check \"Summary\" for more information."
154
exit 1
155
else
156
echo "✅ All validation steps passed"
scripts/check_description_files.py
@@ -694,4 +694,5 @@ def main():
694
]
695
696
if __name__ == "__main__":
697
- main()
+ import sys
698
+ sys.exit(main())
0 commit comments