Skip to content

Releases: denstorti/git-hours-action

Fix output

18 Jun 10:44
Compare
Choose a tag to compare

Release notes

  • Fix output

Example usage

- name: Git hours
  uses: denstorti/git-hours-action@v1
  id: githours
# Use the output from the `hello` step
- name: Get the output 
  run: echo -e '${{steps.githours.outputs.hours}}' 

Initial Release

18 Jun 10:09
Compare
Choose a tag to compare

Git hours action

Use git hours to get estimations about the effort spent in a repository

Based on https://github.com/kimmobrunfeldt/git-hours

Inputs

No inputs needed at this time (WIP).

Outputs

Json data

Json data containing a break down per user email

{
  "denstorti@users.noreply.github.com": {
    "name": "Denis Storti Da Silva",
    "hours": 0,
    "commits": 1
  },
  "total": {
    "hours": 0,
    "commits": 1
  }
}

Example usage

uses: actions/git-hours-action@v1