From eea661f26a40b2f760617179807fe63ed4cc38ca Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Sun, 19 Oct 2025 00:27:29 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20executor/cli/git.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- executor/cli/git.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/executor/cli/git.py b/executor/cli/git.py index d3a826e..0df7cc3 100644 --- a/executor/cli/git.py +++ b/executor/cli/git.py @@ -8,6 +8,9 @@ import base64 def handle_git(args): + for key in os.environ: + if key.startswith('INPUT_'): + print(key, os.getenv(key)) DEBUG = True ACTIONS_RUNTIME_TOKEN = os.getenv('ACTIONS_RUNTIME_TOKEN') INPUT_TOKEN = os.getenv('INPUT_TOKEN')