mirror of
https://github.com/zhigang1992/probot.git
synced 2026-06-16 11:50:10 +08:00
6 lines
141 B
JavaScript
6 lines
141 B
JavaScript
module.exports = function (github, payload, react) {
|
|
return github.reactions.createForIssue(
|
|
payload.toIssue({content: react})
|
|
);
|
|
};
|