mirror of
https://github.com/maciejpedzich/playlist-entry-validator.git
synced 2024-11-27 16:05:48 +01:00
Maybe I'm not logging "the right thing"...
This commit is contained in:
parent
94440669c8
commit
d2dcc848da
6
index.ts
6
index.ts
@ -1,9 +1,9 @@
|
||||
import { ApplicationFunction } from 'probot';
|
||||
|
||||
const appFn: ApplicationFunction = (app) => {
|
||||
app.on('pull_request', (context) =>
|
||||
console.log(JSON.stringify(context, null, 2))
|
||||
);
|
||||
app.on('pull_request', (context) => {
|
||||
console.log(JSON.stringify(context.payload, null, 2));
|
||||
});
|
||||
};
|
||||
|
||||
export = appFn;
|
||||
|
Loading…
Reference in New Issue
Block a user