diff --git a/executor/handlers/config.py b/executor/handlers/config.py index ec603c0..95cbe70 100644 --- a/executor/handlers/config.py +++ b/executor/handlers/config.py @@ -16,4 +16,5 @@ 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) - print(data) + pretty_json = json.dumps(data, indent=4) + print(pretty_json)