diff --git a/.github/workflows/assayo.yml b/.github/workflows/assayo.yml index 0022b36..e471f66 100644 --- a/.github/workflows/assayo.yml +++ b/.github/workflows/assayo.yml @@ -1,6 +1,20 @@ +# 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: '3 * * * *' + + # Run by PR + # (if you have few people and commits are rarely made) + # Remove this for big teams: pull_request: types: [closed] push: @@ -23,7 +37,6 @@ jobs: - name: Create report run: | - git fetch --unshallow || true 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 diff --git a/README.md b/README.md index 52b25b5..9fe780e 100644 --- a/README.md +++ b/README.md @@ -205,8 +205,8 @@ Follow the [Conventional Commits 1.0.0](https://www.conventionalcommits.org/en/v JIRA-1234 feat(profile): Added avatar for user ``` - task number in the task tracker `(JIRA-1234)` -- type of work `(feat, fix, style, refactor, test, doc и т.д.)` -- feature `(profile - new page on site or new function, use one (two) short wordor an abbreviation)` +- type of work `(feat, fix, style, refactor, test, doc and etc.)` +- feature `(profile - new page on site or new function, use one (two) short word or an abbreviation)` - what problem were solved `(Added avatar for user)` ### 👮 How to add checking for commit message? diff --git a/documents/EN.md b/documents/EN.md index 05b1500..0d05078 100644 --- a/documents/EN.md +++ b/documents/EN.md @@ -195,8 +195,8 @@ Follow the [Conventional Commits 1.0.0](https://www.conventionalcommits.org/en/v JIRA-1234 feat(profile): Added avatar for user ``` - task number in the task tracker `(JIRA-1234)` -- type of work `(feat, fix, style, refactor, test, doc и т.д.)` -- feature `(profile - new page on site or new function, use one (two) short wordor an abbreviation)` +- type of work `(feat, fix, style, refactor, test, doc and etc.)` +- feature `(profile - new page on site or new function, use one (two) short word or an abbreviation)` - what problem were solved `(Added avatar for user)` ### 👮 How to add checking for commit message? diff --git a/documents/src/json/en.json b/documents/src/json/en.json index 82839a0..da8f1a6 100644 --- a/documents/src/json/en.json +++ b/documents/src/json/en.json @@ -295,8 +295,8 @@ { "li": [ "task number in the task tracker `(JIRA-1234)`", - "type of work `(feat, fix, style, refactor, test, doc и т.д.)`", - "feature `(profile - new page on site or new function, use one (two) short wordor an abbreviation)`", + "type of work `(feat, fix, style, refactor, test, doc and etc.)`", + "feature `(profile - new page on site or new function, use one (two) short word or an abbreviation)`", "what problem were solved `(Added avatar for user)`" ] }, diff --git a/documents/src/md/EN.md b/documents/src/md/EN.md index 4c699e0..6c272a3 100644 --- a/documents/src/md/EN.md +++ b/documents/src/md/EN.md @@ -97,8 +97,8 @@ Follow the [Conventional Commits 1.0.0](https://www.conventionalcommits.org/en/v JIRA-1234 feat(profile): Added avatar for user ``` - task number in the task tracker `(JIRA-1234)` -- type of work `(feat, fix, style, refactor, test, doc и т.д.)` -- feature `(profile - new page on site or new function, use one (two) short wordor an abbreviation)` +- type of work `(feat, fix, style, refactor, test, doc and etc.)` +- feature `(profile - new page on site or new function, use one (two) short word or an abbreviation)` - what problem were solved `(Added avatar for user)` diff --git a/public/themes/demo.html b/public/themes/demo.html index aea3189..11ffbae 100644 --- a/public/themes/demo.html +++ b/public/themes/demo.html @@ -138,7 +138,7 @@ } const mode = parameters.mode || 'white'; - const url = `http://localhost:3006/?dump=./test.txt&theme=./themes/${mode}.css`; + const url = `https://bakhirev.github.io/demo/?dump=./test.txt&theme=./themes/${mode}.css`; getElementById('frame').setAttribute('src', url); }