Skip to content

Instantly share code, notes, and snippets.

@65Mustang289
Created July 29, 2021 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 65Mustang289/8c64bace014190d7d4b26034f7f287d8 to your computer and use it in GitHub Desktop.
Save 65Mustang289/8c64bace014190d7d4b26034f7f287d8 to your computer and use it in GitHub Desktop.
Add to scripts/sample.js // Description:
// Sample commands
//
// Commands:
// hubot hello
//
// Author:
// Your Name and/or Email Here
module.exports = function(robot) {
robot.respond(/hello/i, function(msg) {
msg.reply("world");
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment