diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-08-29 09:58:09 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-08-29 09:58:09 +0900 |
| commit | 5cb962549252bee3480c389604f44d7d515e4977 (patch) | |
| tree | 525637f108a0ae8f86838db33ad3f2448a653aed /src/api | |
| parent | 投稿のリンクが機能していない問題を修正 (diff) | |
| parent | MAKE EMOJIS GREAT AGAIN (diff) | |
| download | misskey-5cb962549252bee3480c389604f44d7d515e4977.tar.gz misskey-5cb962549252bee3480c389604f44d7d515e4977.tar.bz2 misskey-5cb962549252bee3480c389604f44d7d515e4977.zip | |
Merge branch 'master' of https://github.com/syuilo/misskey
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/service/github.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/service/github.ts b/src/api/service/github.ts index a631808ba5..1c78267c0f 100644 --- a/src/api/service/github.ts +++ b/src/api/service/github.ts @@ -111,12 +111,12 @@ module.exports = async (app: express.Application) => { handler.on('watch', event => { const sender = event.sender; - post(`Starred by **${sender.login}**`); + post(`⭐️ Starred by **${sender.login}** ⭐️`); }); handler.on('fork', event => { const repo = event.forkee; - post(`Forked:\n${repo.html_url}`); + post(`🍴 Forked:\n${repo.html_url} 🍴`); }); handler.on('pull_request', event => { |