diff --git a/executor/handlers/config.py b/executor/handlers/config.py index 0ce1c14..2cd2a3c 100644 --- a/executor/handlers/config.py +++ b/executor/handlers/config.py @@ -11,3 +11,5 @@ def handle_config(config): config['ref'] = INPUT_REF config['github.event.path'] = getenv('GITHUB_EVENT_PATH') + with open(config['github.event.path'], 'r') as fd: + print(fd.readlines())