Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
Provide information on joining the community (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
galgeek authored and whimboo committed Jan 22, 2015
1 parent 5ef21ba commit d1a0a4e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ var ircServer = config.server,
":bug" : "Learn how to report a bug",
":qmo" : "Learn about Quality at Mozilla",
":sumo" : "Learn about Support at Mozilla",
":join" : "Learn about getting involved with Mozilla QA",
":etherpad" : "View the Test Day etherpad",
":helpers" : "View Test Day helpers, and request help with :helpers request",
":schedule" : "View the Test Day schedule",
Expand Down Expand Up @@ -133,6 +134,15 @@ client.addListener('message', function(from, to, message) {
if (message.search('[!:]qmo') >= 0) {
client.say(to, "QMO is short for http://quality.mozilla.org, the official destination for everything related with Mozilla QA");
}

if (message.search('[!:]join') >= 0) {
client.say(from, "Mozilla QA is a diverse, open community of people " +
"pushing the open web forward by ensuring Mozilla produces " +
"the best technology possible. See " +
"https://wiki.mozilla.org/QA " +
"to find out more about getting involved.");
}

if (message.search('[!:]etherpad') >= 0) {
if (testDay.etherpad) {
if (testDay.active) {
Expand Down

0 comments on commit d1a0a4e

Please sign in to comment.