Skip to content

Commit

Permalink
An initial idea to create statistics based on all your commits, like …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
AronNovak committed Aug 3, 2018
1 parent 2e7e59a commit 3e6fcf2
Show file tree
Hide file tree
Showing 4 changed files with 993 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .gitignore
@@ -0,0 +1,20 @@
# Composer #
############
vendor

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db

# IDE #
#######
.project
.settings/
.idea
6 changes: 6 additions & 0 deletions composer.json
@@ -0,0 +1,6 @@
{
"require": {
"knplabs/github-api": "^2.9",
"php-http/guzzle6-adapter": "^1.1"
}
}

0 comments on commit 3e6fcf2

Please sign in to comment.