From 6545aa68e377360717da344ae14d96fa9de9f9b8 Mon Sep 17 00:00:00 2001 From: Timofey Kirillov Date: Fri, 17 Dec 2021 13:22:42 +0300 Subject: [PATCH] fix: converge and dismiss actions should not require env param --- converge/action.yml | 4 ++-- dismiss/action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/converge/action.yml b/converge/action.yml index e0aab29..e5fc21c 100644 --- a/converge/action.yml +++ b/converge/action.yml @@ -12,9 +12,9 @@ inputs: version: description: 'The certain version' required: false - env: + env: # TODO: Remove this deprecated werf option, which is not required anymore (use WERF_ENV variable instead) description: 'Specific deployment environment' - required: true + required: false github-token: description: 'The GitHub token used to login and to interact with Docker Github Packages' default: ${{ github.token }} diff --git a/dismiss/action.yml b/dismiss/action.yml index 195f83f..7ef30e9 100644 --- a/dismiss/action.yml +++ b/dismiss/action.yml @@ -12,9 +12,9 @@ inputs: version: description: 'The certain version' required: false - env: + env: # TODO: Remove this deprecated werf option, which is not required anymore (use WERF_ENV variable instead) description: 'Specific deployment environment' - required: true + required: false github-token: description: 'The GitHub token used to login and to interact with Docker Github Packages' default: ${{ github.token }}