--- layout: default.liquid ---

Probot

GitHub Apps to automate
and improve your workflow

Use pre-built apps to extend GitHub,
and easily build and share your own.

Probot logo

Explore

Check out these hosted apps that extend your project on GitHub. They're all open source and free to use on any project.

{% assign apps = collections.apps | sort: 'installations' | reverse %} {% for app in apps limit:6 %} {% include "app" app: app.data %} {% endfor %}

Discover dozens of apps that extend GitHub and improve your workflow.

{% octicon "telescope" class="mr-2" %} Explore more apps

Build your own app

Apps are easy to write and share.

{% octicon "tools" %} Build a Probot App

Optimized for GitHub

Receive webhooks and use the authenticated client to access the GitHub API. Granular permissions give each app access only to the data it needs and nothing more.

Easily scriptable

Focus on what you want to build. A simple API—built on the latest ES6 JavaScript features—hides the details you don't care about.

{% highlight javascript %} module.exports = (app) => { app.on('issues.opened', async context => { const params = context.issue({ body: 'Hello World!' }) await context.octokit.issues.createComment(params) }) } {% endhighlight %}
@probot commented

Hello World!

Apps are first class actors within GitHub.

Get started with Probot {% octicon "chevron-right" %}