GithubHelp home page GithubHelp logo

opportunitylivetv / pr-bot Goto Github PK

View Code? Open in Web Editor NEW

This project forked from googlechromelabs/pr-bot

1.0 3.0 1.0 440 KB

๐Ÿค– Compare your base branch to a pull request and run plugins over it to view differences

License: Apache License 2.0

JavaScript 100.00%

pr-bot's Introduction

pr-bot

Build Status Coverage Status dependencies Status devDependencies Status

This is a small utility to run a set of "plugins" against a Pull Request on Travis and then report a set of results to GitHub.

Example PR-Bot Output

Getting Started

To use pr-bot you'll need to set up a few things:

  1. Create a GitHub account to use for bot activity. This will be the account login and profile photo that you'll see when the bot comments on a pull request.

  2. Create a personal access token for the GitHub bot account.

  3. In the Travis settings for your repository, set the personal access token as an environment variable called GITHUB_TOKEN.

    Imgur

  4. Add pr-bot as a dependency to your project:

    npm install --save-dev pr-bot
  5. Create a file called pr-bot.config.js at the root of your project (i.e. this file needs to be commited to your GitHub repository).

  6. In this new file add the following:

    const prbot = require('pr-bot');
    
    module.exports = {
      botUsername: `<Add the GitHub Username for your Bot Account Here>`,
      plugins: [
        new prbot.plugins.Size({
          globPattern: '**/*.js',
          globOptions: {
            ignore: [
              '**/node_modules/**/*',
            ]
          },
        }),
      ],
    };
  7. Add the following to your .travis.yml file

    after_script:
      - npm install -g pr-bot
      - pr-bot

Now you can commit your code and if everything is set up correctly, you'll see comments from your bot account.

Example output from Size Plugin from pr-bot

Running Locally

You can see what pr-bot will do locally with the following:

npm install --global pr-bot
pr-bot

This is useful if you want to see the file differences without waiting on Travis.

Example console output from Size Plugin from pr-bot

Customising Config Path

You can use the -c flag to define a custom config path:

pr-bot -c ./some-path-my-config.js

Customising Install and Build

If npm install && npm build will not suffice for your project, you define a buildCommand parameter in your config file to define the command to run in the two checkouts of your project.

module.exports = {
  // Custom build command in travis.config.js
  buildCommand: `npm install && gulp`,


  botUsername: `....`,
  plugins: [...]
}

How it Works

When you run pr-bot it checks out two versions of your project.

  1. If run locally, it'll checkout the default branch of your repo AND use the current directory and the current files for the second version.
  2. If run on Travis, it'll checkout the base of the Pull Request, or the target branch, for the first version and it'll checkout the Pull Request commit as the second version.

These are checked out into tempory files under /tmp and pr-bot will npm install && npm run build in each repository.

After this, each plugin defined in your config file will be called with a beforePath and afterPath. This allows plugins to compare files or anything else they want.

Plugins are expected to return a promise that resolves to an object with a prettyLog parameter and a markdownLog parameter. The prettyLog is used to display plugin output to the console and markdownLog is used to print to the GitHub comment raised against the Pull Request.

Adding Custom Plugins

You can build custom plugins, the key things to note are:

Your plugin must:

  1. ..have a name property.
  2. ..have a run method with a signature of run({beforePath, afterPath} = {}).
  3. ..return a Promise from the run method.

And your plugin should:

  1. ..resolve the run promise with an objectwith prettyLog and markdownLog string parameters to print out info and if you wish to mark the Pull Request as a bad PR (set status to failure), you can return the parameter failPR with true.

A basic plugin can look like this:

{
  name: 'Example Plugin',
  run: () => {
    return Promise.resolve({
      failPR: false,
      prettyLog: 'Hello from example plugin.',
      markdownLog: '## Hello from example plugin.'
    });
  },
}

If you want, your custom plugin can also extend the PluginInterface from the module with const PluginInterface = require('pr-bot').PluginInterface;.

Different Base Branch

When developing on a new version, the default branch on GitHub may not be the branch you want to compare PR's (or locally).

You can compare to other branches using the overrideBaseBranch config.

module.exports = {
  overrideBaseBranch: '<name of branch',
  ...
};

pr-bot's People

Contributors

jasonetco avatar jeffposnick avatar sime avatar

Stargazers

 avatar

Watchers

James Cloos avatar  avatar  avatar

Forkers

martina6hall

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.