grunt-slack-hook
grunt-slack-hook copied to clipboard
Webhook URL is not valid anymore
Slack has changed incoming webhooks URL's, therefore, I would replace:
url = 'https://' + options.domain + '.slack.com/services/hooks/incoming-webhook?token=' + options.token,
by
url = options.endpoint ? options.endpoint : 'https://' + options.domain + '.slack.com/services/hooks/incoming-webhook?token=' + options.token,
To allow flexibility between every kind of endpoints ;)
Created a PR for this #3
Some changes has been done on my fork, I republished the plugin as grunt-slack-hook-task
to npm, if you get back and include the changes I can remove it. I let you the credits in the package.json file...
See ya !
@YouriT Thank you very much for publishing your fork officially. Funny Timing, was just starting to work on patching this up myself
My pleasure @EdHurtig :)
See #6 for a proper PR.