Code Monkey home page Code Monkey logo

pull-review's Issues

add JSON/YAML output

dry run currently outputs the review plan in human-readable form, but could also output it in a machine readable form

fix slack "key image" display

key image is not being set with this PR body:

![screen shot 2017-03-02 at 4 58 15 pm](https://cloud.githubusercontent.com/assets/123456/23528971/b1a5fc50-ff69-11e6-81d8-3e78836c215a.png)
![screen shot 2017-03-02 at 4 58 30 pm](https://cloud.githubusercontent.com/assets/123456/23528972/b1b50132-ff69-11e6-96ac-ed09bb4e8083.png)

add server mode

this would listen for pull request comments like "/review" and run pull-review against the PR

Fix @undefined mentions for Slack

the issue is that the mapping function looks at only one of the real name or the username

  Object.keys(rawUsers).forEach(function(userId) {
    var user = rawUsers[userId];

    if (user.real_name) {
      if (chatUserMap[user.real_name]) {
        robot.logger.error('User mapping already exists for ' + user.real_name);
      } else {
        chatUserMap[user.real_name] = userId;
      }
    }

    if (user.name) {
      if (chatUserMap[user.name]) {
        robot.logger.error('User mapping already exists for ' + user.name);
      } else {
        chatUserMap[user.name] = userId;
      }
    }
  });

Use median file ownership instead of mean

in case Alice has changed more files than Bob, but has 1 files with almost zero ownership, Alice will be ranked lower than Bob, even if Bob has higher ownership in just one file

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.