Добавить executor/handlers/config.py
Test Actions / Builder (push) Successful in 6s

This commit is contained in:
2026-03-16 22:29:20 +03:00
parent 3f6d9642cd
commit 84eee49aa7
+11
View File
@@ -0,0 +1,11 @@
__author__ = 'RemiZOffAlex'
__email__ = 'remizoffalex@mail.ru'
from os import getenv
def handle_config(config):
INPUT_REF = getenv('INPUT_REF')
if len(INPUT_REF)==0:
config['ref'] = getenv['GITHUB_REF_NAME']
else:
config['ref'] = INPUT_REF