Skip to content
/ probot Public
forked from probot/probot

🤖 A framework for building GitHub Apps to automate and improve your workflow

License

Notifications You must be signed in to change notification settings

Uzlopak/probot

This branch is 46 commits behind probot/probot:master.

Folders and files

NameName
Last commit message
Last commit date
Sep 1, 2020
Jul 13, 2024
Jul 9, 2024
Nov 20, 2020
Jul 1, 2024
Jan 25, 2024
May 26, 2020
Jul 13, 2024
Apr 20, 2021
Jul 13, 2024
Sep 16, 2016
Dec 8, 2020
Jan 26, 2024
Apr 26, 2021
Sep 1, 2020
Sep 1, 2020
Mar 8, 2024
May 23, 2018
Jul 19, 2024
Jul 15, 2024
Feb 20, 2024
Jan 25, 2024

Repository files navigation

Probot's logo, a cartoon robot

A framework for building GitHub Apps to automate and improve your workflow

npm Build Status Codecov @ProbotTheRobot on Twitter


If you've ever thought, "wouldn't it be cool if GitHub could…"; I'm going to 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, written in TypeScript. 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:

export default (app) => {
  app.on("issues.opened", async (context) => {
    const issueComment = context.issue({
      body: "Thanks for opening this issue!",
    });
    return context.octokit.issues.createComment(issueComment);
  });

  app.onAny(async (context) => {
    context.log.info({ event: context.name, action: context.payload.action });
  });

  app.onError(async (error) => {
    app.log.error(error);
  });
};

Building a Probot App

If you've landed in this GitHub repository and are looking to start building your own Probot App, look no further than probot.github.io! The Probot website contains our extensive getting started documentation and will guide you through the set up process.

This repository hosts the code for the npm Probot package which is what all Probot Apps run on. Most folks who land in this repository are likely looking to get started building their own 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.

If you're interested in contributing to Probot itself, check out our contributing docs to get started.

Want to discuss with Probot users and contributors? Discuss on GitHub!

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!

About

🤖 A framework for building GitHub Apps to automate and improve your workflow

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 96.5%
  • JavaScript 2.9%
  • Shell 0.6%