From 1831384d1ff4070c968318694d062feff4e9e5ce Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Thu, 19 Mar 2026 22:47:50 +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/handlers/config.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- executor/handlers/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/executor/handlers/config.py b/executor/handlers/config.py index 95cbe70..667820f 100644 --- a/executor/handlers/config.py +++ b/executor/handlers/config.py @@ -16,5 +16,6 @@ def handle_config(config): config['github.event.path'] = getenv('GITHUB_EVENT_PATH') with open(config['github.event.path'], 'r') as fd: data = json.load(fd) + org_id = data['repository']['owner']['id'] pretty_json = json.dumps(data, indent=4) print(pretty_json)