diff --git a/index.ts b/index.ts index cea7b8a..f6fcc1e 100644 --- a/index.ts +++ b/index.ts @@ -1,7 +1,7 @@ import { ApplicationFunction } from 'probot'; const appFn: ApplicationFunction = (app) => { - app.on('pull_request', (context) => { + app.onAny((context) => { console.log(JSON.stringify(context.payload, null, 2)); }); };