Releases: denstorti/git-hours-action
Releases · denstorti/git-hours-action
Fix output
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
Git hours action
Use git hours to get estimations about the effort spent in a repository
Inputs
No inputs needed at this time (WIP).
Outputs
Json data
Json data containing a break down per user email
{
"[email protected]": {
"name": "Denis Storti Da Silva",
"hours": 0,
"commits": 1
},
"total": {
"hours": 0,
"commits": 1
}
}
Example usage
uses: actions/git-hours-action@v1