forked from FoundKeyGang/FoundKey
Refactor: Improve readability
This commit is contained in:
parent
668e5646bd
commit
3a39b2aac2
1 changed files with 3 additions and 2 deletions
|
@ -29,14 +29,15 @@ module.exports = async (app: express.Application) => {
|
|||
});
|
||||
|
||||
handler.on('issues', event => {
|
||||
const info = event.payload;
|
||||
let title: string;
|
||||
switch (event.payload.action) {
|
||||
switch (info.action) {
|
||||
case 'opened': title = 'Issueが立ちました'; break;
|
||||
case 'closed': title = 'Issueが閉じられました'; break;
|
||||
case 'reopened': title = 'Issueが開きました'; break;
|
||||
default: return;
|
||||
}
|
||||
const text = `${title}: ${event.payload.issue.number}「${event.payload.issue.title}」\n${event.payload.issue.html_url}`;
|
||||
const text = `${title}: ${info.issue.number}「${info.issue.title}」\n${info.issue.html_url}`;
|
||||
post(text);
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue