This commit is contained in:
bakhirev 2025-06-27 16:33:53 +03:00
parent 5a37ac67ec
commit 5cf15d1b39
2 changed files with 5 additions and 10 deletions

View file

@ -1,20 +1,12 @@
# Creates an HTML report
# with analysis of commit statistics.
#
# More information: https://github.com/bakhirev/assayo
name: Assayo
on:
# Run by PR
# (if you have few people and commits are rarely made)
# Remove this for big teams:
pull_request:
types: [closed]
push:
tags:
- '*'
branches:
- main
- develop
- 'release/**'
@ -25,3 +17,5 @@ jobs:
steps:
- name: Create git log report
uses: bakhirev/assayo@4293c232ae24d353d634548fde92b52685ba082e
with:
add_file_info: true

View file

@ -7,8 +7,8 @@ description: Report with analysis of commit statistics
author: bakhirev
branding:
icon: 'info'
color: 'blue'
icon: "info"
color: "blue"
inputs:
add_file_info:
@ -17,6 +17,7 @@ inputs:
runs:
using: composite
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4