mirror of
https://github.com/RamonGebben/mergify.git
synced 2026-03-10 08:51:18 +00:00
19 lines
255 B
JavaScript
19 lines
255 B
JavaScript
const { pick } = require('ramda');
|
|
|
|
const simplifyMergeRequest = pick([
|
|
'title',
|
|
'id',
|
|
'iid',
|
|
'target_branch',
|
|
'source_branch',
|
|
'state',
|
|
'author',
|
|
'assignee',
|
|
'web_url',
|
|
'merge_status'
|
|
]);
|
|
|
|
module.exports = {
|
|
simplifyMergeRequest
|
|
};
|