Go to file
Brandon Keepers b71b2a0135
Remove localtunnel (#387)
2018-01-11 21:51:39 -06:00
.github Smaller image in the welcome PR comment 2017-09-29 18:01:39 -04:00
bin Remove localtunnel (#387) 2018-01-11 21:51:39 -06:00
docs Remove localtunnel (#387) 2018-01-11 21:51:39 -06:00
lib Remove localtunnel (#387) 2018-01-11 21:51:39 -06:00
script chore(docs): Use GH_TOKEN for updating docs 2017-10-14 07:57:46 -05:00
static feat: /probot homepage (#279) 2017-10-17 09:35:58 -04:00
test Use smee-client instead of EventSource directly (#389) 2018-01-11 21:39:50 -06:00
views refactor: switch ejs for hbs 2017-11-21 09:21:39 -05:00
.editorconfig Add editorconfig 2016-09-16 11:45:59 -07:00
.env.example Remove localtunnel (#387) 2018-01-11 21:51:39 -06:00
.gitignore chore: Add serializer tests (#369) 2017-12-13 11:13:46 -05:00
.jsdoc.json Update publish-docs to copy API docs to website 2017-08-18 10:55:11 -05:00
.travis.yml Enable Codecov (#360) 2017-12-05 10:22:40 -05:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2017-04-06 18:49:20 -05:00
CONTRIBUTING.md docs(typo): Fix typo in CONTRIBUTING 2017-10-30 11:45:04 -04:00
LICENSE Update LICENSE 2017-07-16 16:41:12 -07:00
README.md Add example to README (#361) 2017-12-06 00:29:39 -05:00
app.json pro the bot 2017-08-29 23:38:51 -05:00
appveyor.yml chore: Setup Appveyor (#334) 2017-11-19 23:57:37 -05:00
codecov.yml Enable Codecov (#360) 2017-12-05 10:22:40 -05:00
package.json Use smee-client instead of EventSource directly (#389) 2018-01-11 21:39:50 -06:00

README.md

Probot

npm version Build Status AppVeyor Build Status Codecov Greenkeeper badge The Changelog #264

If you've ever thought, "wouldn't it be cool if GitHub could…"; imma stop you right there. Most features can actually be added via GitHub Apps, which extend GitHub and can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. Apps are first class actors within GitHub.

How it works

Probot is a framework for building GitHub Apps in Node.js. GitHub Apps can listen to webhook events sent by a repository or organization. Probot uses its internal event emitter to perform actions based on those events. A simple Probot App might look like this:

module.exports = robot => {
  robot.on('issues.opened', async context => {
    const issueComment = context.issue({ body: 'Thanks for opening this issue!' })
    return context.github.issues.createComment(issueComment)
  })
}

Check out some of the featured apps or read the docs to learn more about writing a new app.

Contributing

Probot is built by people just like you! Most of the interesting things are built with Probot, so consider starting by writing a new app or improving one of the existing ones, and check out our contributing docs for other ways to get started.

Want to chat with Probot users and contributors? Join us in Slack!

Ideas

Have an idea for a cool new GitHub App (built with Probot)? That's great! If you want feedback, help, or just to share it with the world you can do so by creating an issue in the probot/ideas repository!