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 %}