π Generate Repo Stats #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generates series of diagrams and visualizations | |
name: π Generate Repo Stats | |
on: | |
workflow_dispatch: # Manual dispatch | |
schedule: | |
- cron: '0 1 * * 0' # At 01:00 on Sunday. | |
jobs: | |
# File structure chart | |
file-structure: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Generate File Structure Diagram | |
uses: githubocto/[email protected] | |
with: | |
root_path: 'src/' | |
output_file: docs/assets/repo-visualization.svg | |
excluded_paths: dist,node_modules | |
commit_message: ':yellow_heart: Updates repo diagram' | |
branch: master | |
# Hercules git branching stats | |
git-stats: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
- name: Hercules | |
uses: src-d/hercules@master | |
- uses: actions/upload-artifact@master | |
with: | |
name: hercules_charts | |
path: hercules_charts.tar | |
# Lowlighter metrics community metrics | |
community-stats: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@master | |
- name: Generate Repo Metrics | |
uses: lowlighter/metrics@latest | |
with: | |
token: ${{ secrets.LISSY93_PAT }} | |
committer_token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} | |
committer_branch: master | |
committer_message: ':purple_heart: Adds repo metrics' | |
filename: docs/assets/repo-metrics.* | |
template: classic | |
user: Lissy93 | |
repo: dashy | |
delay: 5 | |
- name: Generate License Metrics | |
uses: lowlighter/metrics@latest | |
with: | |
token: ${{ secrets.LISSY93_PAT }} | |
committer_token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} | |
committer_branch: master | |
committer_message: ':purple_heart: Adds license metrics' | |
filename: docs/assets/license-metrics.* | |
template: repository | |
user: Lissy93 | |
repo: dashy | |
delay: 5 | |
plugin_licenses: yes | |
plugin_licenses_setup: yarn build | |
plugin_licenses_ratio: yes | |
plugin_licenses_legal: yes | |
- name: Generate Contributor Metrics | |
uses: lowlighter/metrics@latest | |
with: | |
token: ${{ secrets.LISSY93_PAT }} | |
committer_token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} | |
committer_branch: master | |
committer_message: ':purple_heart: Adds contributor metrics' | |
filename: docs/assets/controbutor-metrics.* | |
user: Lissy93 | |
repo: dashy | |
delay: 5 | |
plugin_contributors: yes | |
plugin_contributors_base: "" | |
plugin_contributors_head: master | |
plugin_contributors_ignored: bot | |
plugin_contributors_contributions: yes | |
plugin_contributors_sections: contributors | |