mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-15 02:18:58 +08:00
17 lines
442 B
JavaScript
17 lines
442 B
JavaScript
module.exports = {
|
|
repository: repository => repository.full_name,
|
|
event: event => {
|
|
if (typeof event !== 'object' || !event.payload) {
|
|
return event
|
|
} else {
|
|
return {
|
|
id: event.id,
|
|
event: event.event,
|
|
action: event.payload.action,
|
|
repository: event.payload.repository && event.payload.repository.full_name
|
|
}
|
|
}
|
|
},
|
|
installation: installation => installation.account.login
|
|
}
|