Merge pull request #54 from soninaren/master

Adding a link for information on github webhooks
This commit is contained in:
Naren Soni 2016-03-22 13:47:18 -07:00
Родитель ae35992907 d57337e701
Коммит 67cc7a03f2
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1,4 +1,5 @@
module.exports = function (context, data) {
// Please visit http://go.microsoft.com/fwlink/?LinkID=761099&clcid=0x409 for more information on settting up Github Webhooks
module.exports = function (context, data) {
context.log('GitHub WebHook triggered! ' + data.comment.body);
context.res = { body: 'New GitHub comment: ' + data.comment.body };
context.done();