Open benoror opened 7 years ago
How it works: Simply place your "custom actions" module inside scripts/github/custom-actions.js
on your hubot's project root and override desired actions like this:
module.exports = {
release: function(adapter, data, cb) {
var res = data.action + ': ' + data.release + '\n';
res += data.release.html_url + '\n'
res += data.release.body;
cb(res);
}
};
(Tested Locally & Heroku)
@patcon @parkr Any feedback on this? Let me know if you need any kind of help!
@patcon @parkr ping ❤️
Fix https://github.com/hubot-scripts/hubot-github-repo-event-notifier/issues/37