Skip to content

Commit 3e6fcf2

Browse files
committed
An initial idea to create statistics based on all your commits, like GitHub Activity Graph, but this one would take into account the status of the automated checks. It might turn out that you're producing mostly perfect commits on Tuesday, but Friday evening, Travis nitpicks you always about coding standard, so you are not so efficient anymore.
I plan to: - add visualization - add some math behind: is there any correlation between the the hour of the day, the day of the month, etc; with the outcome of Travis? - support private repositories / commits - handle GitHub API Limits properly - configurable time interval - GitHub API Authentication for better rate limits
1 parent 2e7e59a commit 3e6fcf2

File tree

4 files changed

+993
-0
lines changed

4 files changed

+993
-0
lines changed

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Composer #
2+
############
3+
vendor
4+
5+
# OS generated files #
6+
######################
7+
.DS_Store
8+
.DS_Store?
9+
._*
10+
.Spotlight-V100
11+
.Trashes
12+
Icon?
13+
ehthumbs.db
14+
Thumbs.db
15+
16+
# IDE #
17+
#######
18+
.project
19+
.settings/
20+
.idea

composer.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"require": {
3+
"knplabs/github-api": "^2.9",
4+
"php-http/guzzle6-adapter": "^1.1"
5+
}
6+
}

0 commit comments

Comments
 (0)