playlist-entry-validator/index.ts

10 lines
205 B
TypeScript
Raw Normal View History

2022-09-12 12:45:19 +02:00
import { ApplicationFunction } from 'probot';
const appFn: ApplicationFunction = (app) => {
2022-09-12 16:55:30 +02:00
app.onAny((context) => {
console.log(JSON.stringify(context.payload, null, 2));
});
2022-09-12 12:45:19 +02:00
};
export = appFn;