We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 061ec32 commit 3087c2aCopy full SHA for 3087c2a
1 file changed
.github/workflows/release.yml
@@ -942,8 +942,16 @@ jobs:
942
done
943
944
if [ "$SCAN_COMPLETE" != "true" ]; then
945
- echo "BLOCKED: $BASENAME scan did not complete within 20 minutes!"
946
- echo "FAIL" >> /tmp/vt_gate_fail
+ # Script files (sh, ps1) are low-priority in VT queue — warn but don't block
+ case "$BASENAME" in
947
+ *.sh|*.ps1)
948
+ echo "WARNING: $BASENAME scan did not complete within 20 minutes (script files are low-priority in VT)"
949
+ ;;
950
+ *)
951
+ echo "BLOCKED: $BASENAME scan did not complete within 20 minutes!"
952
+ echo "FAIL" >> /tmp/vt_gate_fail
953
954
+ esac
955
fi
956
957
0 commit comments