GithubHelp home page GithubHelp logo

alibaba / collabobot Goto Github PK

View Code? Open in Web Editor NEW
46.0 4.0 12.0 150 KB

A collaborate robot for GitHub open source repositories. Auto weekly report, auto issue label, auto issue translation, etc.

License: Apache License 2.0

Dockerfile 0.14% TypeScript 93.66% JavaScript 6.20%

collabobot's Introduction

Collabobot

Collabobot Banner

Collabobot is short for collaborate robot which is for GitHub open source project collaboration. This project is a GitHub App that you can easily install for your repos.

Collabobot is built on Probot which is a great framework to build GitHub App and collabobot has its own advantages which will be introduced in this doc.

To start using Collabobot

Collabobot is written in pure TypeScript to improve development speed and quality.

All dependent modules are listed in package.json, so the only environment you need is Node.js and latest npm. Run npm install after cloning the project and add a globalConfig.js file to configure your robot, the content of the config file should be like below, and you can find a sample config in globalConfigTemplate.js:

module.exports = {
    webhookPath: "/event",
    port: 5000,
    webhookProxy: your_smee_url,
    id: your_app_id,
    secret: your_app_secret,
    cert: your_pem_file_path
};

The only required config fields are id, secret and cert.

  • id is the GitHub App id of your installed app, you can find it in the general setting page of your app.
  • secret is the webhook secrect of your app, you can set it in the general setting page of your app.
  • cert is the cert file path of your app, this cert file will be used to authenticate your app, it can be generated in your general setting page of your app.

All the required field can be found, set or generate in your app general setting page, which would be like https://github.com/settings/apps/your_app_name for personal account or https://github.com/organizations/your_org_name/settings/apps/your_app_name for orgs.

Run the robot

After creating the config file, just run npm start to start the robot and you can use whatever tools you need to make the robot daemon(pm2/forever/nohup).

You can also run the robot by Docker, we provide Dockerfile to run the project, use docker build to build the image and use docker run to run the image. Notice that the port exposed is 5000 by default.

To start developing Collabobot

The framework of this robot only provides some basic services, you can use all these services to develop your own component.

The services contains:

HTTP routes

This robot uses Probot to provide web access ability, you can access to the probot app via this.app in any component and use this.app.route to mount a new http access point. See Probot doc.

GitHub webhook service

This robot uses Probot to provide GitHub webhook service, you can use this.app.on(event, func) to register your logic on events. See Probot doc.

GitHub service

This robot uses Probot to provide GitHub request ability, you can use this.app.installationsService.getGithubClient(owner: string, repo: string) to get a valid GitHub client to invoke a request or you can use context.github to get a valid GitHub client for current context if you have the context.

Then the GitHub client is a client which can make all API requests, see Probot doc.

Scheduler service

Scheduler service is for tasks which will schedule in the future. This robot uses node-schedule to manage the tasks which is compatible with crontab time format.

You can use this.app.schedulerService.register(name: string, time: string, (date: Date) => void); to register a schedule task, and this function will return a Job handler that you can use to cancle the job.

Event service

Event service is very important in the framework. This service is used to subscribe and publish an event with certain context.

Notice that the event service uses class type to trigger and dispatch events. All the event types should add into services/event/events.ts and derived from BaseEvent and the param of the handler is also the class type.

Then you can use this.app.eventService.on(EventType, (event: EventType) => void); to register your handler for a specific event type and use this.app.eventService.trigger(EventType, event); to trigger an event. When an event is triggered, all listened handlers will be called with the event param.

Data service

Data service provides basic repo data for all services and components.

Repo data includes repo basic info, all star, watch, fork, contributor, issue, pull requests data. The data will regularly updated due to the config and listen to web hook to update data. So the data in data service is up-to-date and can be used any time.

You can access the repo data via this.app.dataService.getRepoData(owner: string, repo: string) and you can get detail info of user data via this.app.dataService.getUserData(login: string).

Mail service

Mail service provide basic mail send service for the app.

We use nodemailer as our mail client. You can use this.app.mailService.send(options: Nodemailer.SendMailOptions) to send a mail and use this.app.mailService.getDefaultSendOptions() => Nodemailer.SendMailOptions to get a default config which is a function configured in config files(default return an empty object).

Translate service

Translate service provides translation services using Google Translation API.

This service only uses API key in authentication, so you need to provide a Google translation API key to init the service. Then you can use this.app.translateService.translate(strings: string, target: string) => Promise<TranslateResult> or this.app.translateServiec.translateArray(strings: string[], target: string): Promise<TranslateResult[]> to get one or more translation results and this.app.translateService.detect(strings: string): Promise<DetectResult> to detect language of the input.

DingTalk notify service

DingTalk notify service gives basic ability to notify messages with DingTalk group robot.

You can use several functions to send all kinds of messages to DingTalk group robot, see: https://open-doc.dingtalk.com/docs/doc.htm.

Support

If you have any questions or feature requests, please feel free to submit an issue.

collabobot's People

Contributors

frank-zsy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

collabobot's Issues

[WeeklyReport] Weekly report for collabobot 2019-4-19 to 2019-4-26

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 7 (↑5) 2 (↑1) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
2 1 4 4

PR Overview

Thanks to contributions from community, collabobot team merged 4 pull requests in the repository last week. They are:

  • code of conduct typo fix. (#17)
  • Add banner and logo (#16)
  • add default config files. (#15)
  • fix data update for new installed app (#14)

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews
@Frankzhaopku 4

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-5-17 to 2019-5-24

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 11 (-) 2 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-5-10 to 2019-5-17

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 11 (↑1) 2 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-5-24 to 2019-5-31

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 12 (↑1) 2 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

Support locking an issue

There are two functions that may be helpful to manage the issue list:

  1. close an issue if no one replies to it for a long time.
  2. lock an issue so on one can reply to it if the issue has been closed for some time.

[WeeklyReport] Weekly report for collabobot 2019-9-20 to 2019-9-27

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 18 (-) 6 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-8-23 to 2019-8-30

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 17 (↑2) 4 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-9-6 to 2019-9-13

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 18 (-) 6 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-6-21 to 2019-6-28

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 16 (-) 3 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-8-16 to 2019-8-23

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 15 (-) 4 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-4-12 to 2019-4-19

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 2 (↑2) 1 (↑1) 1 (↑1)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
6 5 5 5

PR Overview

Thanks to contributions from community, collabobot team merged 5 pull requests in the repository last week. They are:

  • fix weekly report label bug and defaultly disable auto label for bot (#11)
  • Create CODE_OF_CONDUCT.md (#7)
  • Add readme (#6)
  • add collabobot config (#4)
  • First pull request (#1)

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews
@Frankzhaopku 5

Contributors Overview

It is collabobot team's great honor to have new contributors from community. We really appreciate your contributions. Feel free to tell us if you have any opinion and please share this open source project with more people if you could. If you hope to be a contributor as well, please start from https://github.com/alibaba/collabobot/blob/master/CONTRIBUTING.md .
Here is the list of new contributors:

@Frankzhaopku

Thanks to you all.

[WeeklyReport] Weekly report for collabobot 2019-6-28 to 2019-7-5

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 16 (-) 3 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-7-12 to 2019-7-19

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 16 (-) 4 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-8-30 to 2019-9-6

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 18 (↑1) 6 (↑2) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-5-31 to 2019-6-7

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 13 (↑1) 3 (↑1) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

npm start error: No config file found in /root/collabobot/globalConfig.js

npm start

> [email protected] prestart /root/collabobot
> npm run build


> [email protected] build /root/collabobot
> npm run auto-gen && tsc


> [email protected] auto-gen /root/collabobot
> tsc && node ./lib/utils/applicationGenerator.js


> [email protected] start /root/collabobot
> node lib/index.js

(node:28317) UnhandledPromiseRejectionWarning: No config file found in /root/collabobot/globalConfig.js
(node:28317) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:28317) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

Node version v10.15.0
I do have a globalConfigTemplate.js file with the config referred the README.

[WeeklyReport] Weekly report for collabobot 2019-10-4 to 2019-10-11

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
3 19 (↑1) 6 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-9-27 to 2019-10-4

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 18 (-) 6 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-6-7 to 2019-6-14

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 14 (↑1) 3 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-6-14 to 2019-6-21

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 16 (↑2) 3 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-4-26 to 2019-5-3

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 9 (↑2) 2 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 2 2 2

PR Overview

Thanks to contributions from community, collabobot team merged 2 pull requests in the repository last week. They are:

  • refine welcome info (#21)
  • fix install new repo with installation and load config delay (#20)

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews
@Frankzhaopku 2

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-8-2 to 2019-8-9

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 15 (-) 4 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
4 4 6 6

PR Overview

Thanks to contributions from community, collabobot team merged 6 pull requests in the repository last week. They are:

  • remove log (#44)
  • change log position (#42)
  • add log (#41)
  • add block user component in app (#39)
  • add block user function (#37)
  • lodash update (#36)

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews
@Frankzhaopku 1

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-7-26 to 2019-8-2

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 16 (-) 4 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-9-13 to 2019-9-20

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 18 (-) 6 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-8-9 to 2019-8-16

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 15 (-) 4 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-7-19 to 2019-7-26

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 16 (-) 4 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-7-5 to 2019-7-12

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 16 (-) 4 (↑1) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-5-3 to 2019-5-10

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 10 (↑1) 2 (-) 1 (-)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
1 1 0 0

PR Overview

Thanks to contributions from community, collabobot team merged 0 pull requests in the repository last week. They are:

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews

New Contributors

We have no new contributors in this project this week.
collabobot team encourages everything about contribution from community.
For more details, please refer to https://github.com///blob/master/CONTRIBUTING.md .

[WeeklyReport] Weekly report for collabobot 2019-4-12 to 2019-4-19

Weekly Report of collabobot

This is a weekly report of collabobot. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.

Repo Overview

Basic data

Baisc data shows how the watch, star, fork and contributors count changed in the passed week.

Watch Star Fork Contributors
2 2 (↑2) 1 (↑1) 1 (↑1)

Issues & PRs

Issues & PRs show the new/closed issues/pull requests count in the passed week.

New Issues Closed Issues New PR Merged PR
7 5 5 5

PR Overview

Thanks to contributions from community, collabobot team merged 5 pull requests in the repository last week. They are:

  • fix weekly report label bug and defaultly disable auto label for bot (#11)
  • Create CODE_OF_CONDUCT.md (#7)
  • Add readme (#6)
  • add collabobot config (#4)
  • First pull request (#1)

Code Review Statistics

collabobot encourages everyone to participant in code review, in order to improve software quality. This robot would automatically help to count pull request reviews of single github user as the following every week. So, try to help review code in this project.

Contributor ID Pull Request Reviews
@Frankzhaopku 5

Contributors Overview

It is collabobot team's great honor to have new contributors from community. We really appreciate your contributions. Feel free to tell us if you have any opinion and please share this open source project with more people if you could. If you hope to be a contributor as well, please start from https://github.com/alibaba/collabobot/blob/master/CONTRIBUTING.md .
Here is the list of new contributors:

@Frankzhaopku

Thanks to you all.

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.