10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { ApplicationFunction } from 'probot';
|
|
|
|
const appFn: ApplicationFunction = (app) => {
|
|
app.on('pull_request', (context) =>
|
|
console.log(JSON.stringify(context, null, 2))
|
|
);
|
|
};
|
|
|
|
export = appFn;
|