Go to file
Brandon Keepers 215d9e97be
chore: relax version for express-async-errors (#481)
2018-03-26 15:58:04 -05:00
.github Update config.yml (#431) 2018-03-08 21:37:34 -05:00
bin Remove localtunnel (#387) 2018-01-11 21:51:39 -06:00
docs Add GraphQL support (#472) 2018-03-21 21:33:16 -05:00
lib fix: move webhook event logs to debug level (#478) 2018-03-22 18:01:20 -05:00
script chore: Remove scripts that are no longer used (#468) 2018-03-18 18:03:45 -05:00
static feat: /probot homepage (#279) 2017-10-17 09:35:58 -04:00
test fix: allow initializing the GitHub client without options (#479) 2018-03-22 17:33:38 -05: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
.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 chore: Add twitter badge (#482) 2018-03-22 21:08:36 -05:00
LICENSE Update LICENSE 2017-07-16 16:41:12 -07:00
README.md chore: Add twitter badge (#482) 2018-03-22 21:08:36 -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 Customize Codecov ☂️ (#386) 2018-01-12 08:01:29 -06:00
package.json chore: relax version for express-async-errors (#481) 2018-03-26 15:58:04 -05:00

README.md

Probot

npm version

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!

Summer of Code

Probot is super excited to be participating in Rails Girls Summer of Code & Google Summer of Code! We've written some documentation on how to get started if you're part of one of these programs.