Merge pull request #199 from gimenete/patch-1

Adds missing await
This commit is contained in:
Brandon Keepers
2018-06-27 18:52:16 -05:00
committed by GitHub

View File

@@ -86,7 +86,7 @@ module.exports = robot => {
const params = context.issue({
body: 'Hello World!'
});
context.github.issues.createComment(params);
await context.github.issues.createComment(params);
});
};
{% endhighlight %}