From 4293c232ae24d353d634548fde92b52685ba082e Mon Sep 17 00:00:00 2001 From: bakhirev Date: Fri, 27 Jun 2025 16:02:59 +0300 Subject: [PATCH] update --- .github/workflows/assayo.yml | 27 +++------------------------ 1 file changed, 3 insertions(+), 24 deletions(-) diff --git a/.github/workflows/assayo.yml b/.github/workflows/assayo.yml index c5e109b..d541c29 100644 --- a/.github/workflows/assayo.yml +++ b/.github/workflows/assayo.yml @@ -1,17 +1,10 @@ # Creates an HTML report # with analysis of commit statistics. -# +# # More information: https://github.com/bakhirev/assayo name: Assayo -description: Report with analysis of commit statistics on: - # Run by time - # (if you have a lot of people and frequent commits) - # Remove this for small teams: - schedule: - - cron: '0 0 */5 * *' - # Run by PR # (if you have few people and commits are rarely made) # Remove this for big teams: @@ -21,7 +14,6 @@ on: tags: - '*' branches: - - main - develop - 'release/**' @@ -30,18 +22,5 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Create report - run: | - git clone https://github.com/bakhirev/assayo.git - git --no-pager log --raw --numstat --oneline --all --reverse --date=iso-strict --pretty=format:"%ad>%aN>%aE>%s" | sed -e 's/\\/\\\\/g' | sed -e 's/`/"/g' | sed -e 's/\$/S/g' | sed -e '1s/^/R(f\`/' | sed -e '$s/$/\`\);/' > ./assayo/build/log.txt - - - name: Archive the report as an artifact - uses: actions/upload-artifact@v4 - with: - name: Commit statistics report - path: ./assayo/build/ \ No newline at end of file + - name: Create git log report + uses: bakhirev/assayo