From dcef029dc27d6f31fef763bbd843890848eaef72 Mon Sep 17 00:00:00 2001 From: Bex Warner Date: Sat, 11 Aug 2018 23:00:51 -0700 Subject: [PATCH] Update index.html --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index da49fcd..14d764f 100644 --- a/index.html +++ b/index.html @@ -85,10 +85,10 @@ module.exports = app => { app.on('issues.opened', async context => { const params = context.issue({ body: 'Hello World!' - }); - await context.github.issues.createComment(params); - }); -}; + }) + await context.github.issues.createComment(params) + }) +} {% endhighlight %}