All Projects β†’ probot β†’ Probot

probot / Probot

Licence: isc
πŸ€– A framework for building GitHub Apps to automate and improve your workflow

Programming Languages

typescript
32286 projects
Handlebars
879 projects

Projects that are alternatives of or similar to Probot

react-preview
a GitHub App built with probot that generates preview links for react based projects.
Stars: ✭ 14 (-99.81%)
Mutual labels:  probot, github-apps
boring-cyborg
πŸ€– A Github bot to automatically label PRs, issues and perform all the boring operations that you don't want to do.
Stars: ✭ 66 (-99.1%)
Mutual labels:  probot
issuelabeler
A GitHub bot to label issues automatically based on title and body against list of defined labels. System status (https://status.verticalaxisbd.com/)
Stars: ✭ 23 (-99.69%)
Mutual labels:  probot
PROBOT Anno
ROS Packages for PROBOT Anno.
Stars: ✭ 75 (-98.98%)
Mutual labels:  probot
background-check
A GitHub App built with probot that peforms a "background check" to identify users who have been toxic in the past, and shares their toxic activity in the maintainer’s repo.
Stars: ✭ 27 (-99.63%)
Mutual labels:  probot
probot-issue-duplicate-detection
A probot plugin for automatic issue duplicate detection
Stars: ✭ 31 (-99.58%)
Mutual labels:  probot
probot-ooo
πŸ™… Respond with an auto-responder when you are OOO
Stars: ✭ 36 (-99.51%)
Mutual labels:  probot
Mergeable
πŸ€– All the missing GitHub automation πŸ™‚ πŸ™Œ
Stars: ✭ 475 (-93.55%)
Mutual labels:  probot
fyi
Map & Explore your organization's System Architecture
Stars: ✭ 28 (-99.62%)
Mutual labels:  probot
merge-me
A GitHub app that merges your pull requests once all required checks pass.
Stars: ✭ 19 (-99.74%)
Mutual labels:  probot
prosebot
πŸ€–πŸ”Š Probot App to help you write better on GitHub.
Stars: ✭ 46 (-99.38%)
Mutual labels:  probot
linter-alex
πŸ“Sensitive, considerate writing before you merge your Pull Requests
Stars: ✭ 67 (-99.09%)
Mutual labels:  probot
vault-plugin-secrets-github
Create ephemeral, finely-scoped @github access tokens using @hashicorp Vault.
Stars: ✭ 139 (-98.11%)
Mutual labels:  github-apps
probot-semver
A GitHub app that provides automatic semantic versioning support
Stars: ✭ 15 (-99.8%)
Mutual labels:  probot
auth-routes
πŸ”€πŸ”’ Helpful authentication routes for Node.js GitHub integrations
Stars: ✭ 13 (-99.82%)
Mutual labels:  probot
dont-merge
Prevent merging of Pull Requests with a custom label selected on labels area.
Stars: ✭ 26 (-99.65%)
Mutual labels:  probot
node
npm's fork of nodejs/node, for sending PRs to update deps/npm
Stars: ✭ 30 (-99.59%)
Mutual labels:  probot
Todo
πŸ€–βœ… GitHub App that creates new issues from actionable comments in your code.
Stars: ✭ 685 (-90.7%)
Mutual labels:  probot
Delete Merged Branch
No more manually deleting merged branches, this lovely app does it for you.
Stars: ✭ 256 (-96.52%)
Mutual labels:  probot
probot-config
A Probot extension to easily share configs between repositories.
Stars: ✭ 63 (-99.14%)
Mutual labels:  probot

Probot's logo, a cartoon robot

Probot

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:

module.exports = (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) => {
    context.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 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!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].