From 53c6d0cf9d479fa465b0173bd71b32d327fd9223 Mon Sep 17 00:00:00 2001 From: sarmstrong Date: Thu, 10 Sep 2026 11:30:26 +0300 Subject: [PATCH] Workaround for actions boolean issue. --- .gitea/workflows/werf-deploy-template.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/werf-deploy-template.yml b/.gitea/workflows/werf-deploy-template.yml index 3a8509d..058c4bd 100644 --- a/.gitea/workflows/werf-deploy-template.yml +++ b/.gitea/workflows/werf-deploy-template.yml @@ -23,9 +23,9 @@ on: required: true type: string has_secrets: - default: true + default: 'true' required: false - type: boolean + type: string werf_secret_key_vault_location: description: "Имя секрета, содержащего ключ для дешифрования werf, расположенного по базовому пути в vault" default: werf_secret_key @@ -33,23 +33,23 @@ on: type: string notification_enabled: description: "Включение оповещений о разворачивании, требуется иметь url для оповещений в vault" - default: true + default: 'true' required: false - type: boolean + type: string custom_notification_hook_enabled: description: "Использовать ли кастомный url хук для оповещений (должен лежать в vault секрете проекта)" - default: false + default: 'false' required: false - type: boolean + type: string notification_channel: description: "Канал для оповещений о результатах деплоя" default: internal_projects_notifications required: false type: string werf_debug: - default: false + default: 'false' required: false - type: boolean + type: string secrets: VAULT_ROLE_ID: required: true