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)