Skip to content

Commit 3087c2a

Browse files
committed
VT gate: warn (not block) when script files timeout (low VT priority)
1 parent 061ec32 commit 3087c2a

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -942,8 +942,16 @@ jobs:
942942
done
943943
944944
if [ "$SCAN_COMPLETE" != "true" ]; then
945-
echo "BLOCKED: $BASENAME scan did not complete within 20 minutes!"
946-
echo "FAIL" >> /tmp/vt_gate_fail
945+
# Script files (sh, ps1) are low-priority in VT queue — warn but don't block
946+
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
947955
fi
948956
done
949957

0 commit comments

Comments
 (0)