hueta2
build-and-push / detect (push) Successful in 12s
build-and-push / build (${{ fromJSON(needs.detect.outputs.services) }}) (push) Successful in 25s

This commit is contained in:
frogolonso
2026-08-26 13:06:59 +03:00
parent 2ae70fc165
commit 526374b5a6
4 changed files with 45 additions and 8 deletions
+2
View File
@@ -36,6 +36,8 @@ def valid_username(username):
return False # имя, которое content мог бы отрендерить как шаблон
if "{{" in username or "{%" in username or "{#" in username:
return False
if any(ord(c) < 0x20 for c in username): # control chars / newlines
return False
return True