Bring back the onAny handling

This commit is contained in:
Maciej Pędzich 2022-09-12 16:55:30 +02:00
parent d2dcc848da
commit f348ecb8e4

View File

@ -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));
});
};