Metrics Renders #64
This file contains hidden or 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
| name: Metrics Renders | |
| on: | |
| schedule: | |
| - cron: "0 0 */2 * *" | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - 'main' | |
| paths: | |
| - '.github/workflows/metrics_renders.yml' | |
| jobs: | |
| github-metrics: | |
| runs-on: [self-hosted, aws] | |
| environment: | |
| name: production | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Base | |
| uses: lowlighter/metrics@latest | |
| with: | |
| filename: base.svg | |
| token: ${{ secrets.METRICS_TOKEN }} | |
| output_action: gist | |
| committer_gist: ${{ secrets.GISTS }} | |
| user: CompPsyUnion | |
| template: classic | |
| base: header, activity, repositories, metadata | |
| config_timezone: Asia/Shanghai | |
| - name: Mostused | |
| uses: lowlighter/metrics@latest | |
| with: | |
| filename: mostused.svg | |
| token: ${{ secrets.METRICS_TOKEN }} | |
| output_action: gist | |
| committer_gist: ${{ secrets.GISTS }} | |
| user: CompPsyUnion | |
| template: classic | |
| base: "" | |
| plugin_languages: yes | |
| plugin_languages_analysis_timeout: 15 | |
| plugin_languages_analysis_timeout_repositories: 7.5 | |
| plugin_languages_categories: markup, programming | |
| plugin_languages_colors: github | |
| plugin_languages_limit: 8 | |
| plugin_languages_recent_categories: markup, programming | |
| plugin_languages_recent_days: 14 | |
| plugin_languages_recent_load: 300 | |
| plugin_languages_sections: most-used | |
| plugin_languages_threshold: 0% | |
| - name: People | |
| uses: lowlighter/metrics@latest | |
| with: | |
| filename: people.svg | |
| token: ${{ secrets.METRICS_TOKEN }} | |
| output_action: gist | |
| committer_gist: ${{ secrets.GISTS }} | |
| base: "" | |
| plugin_people: yes | |
| plugin_people_limit: 24 | |
| plugin_people_size: 28 | |
| plugin_people_types: members | |
| - name: Activity | |
| uses: lowlighter/metrics@latest | |
| with: | |
| filename: activity.svg | |
| token: ${{ secrets.METRICS_TOKEN }} | |
| output_action: gist | |
| committer_gist: ${{ secrets.GISTS }} | |
| user: CompPsyUnion | |
| template: classic | |
| base: "" | |
| plugin_activity: yes | |
| plugin_activity_days: 14 | |
| plugin_activity_filter: all | |
| plugin_activity_limit: 5 | |
| plugin_activity_load: 300 | |
| plugin_activity_visibility: all | |
| - name: Mildly interesting facts | |
| uses: lowlighter/metrics@latest | |
| with: | |
| filename: facts.svg | |
| token: ${{ secrets.METRICS_TOKEN }} | |
| output_action: gist | |
| committer_gist: ${{ secrets.GISTS }} | |
| base: "" | |
| plugin_habits: yes | |
| plugin_habits_facts: yes | |
| plugin_habits_charts: yes | |
| config_timezone: Asia/Shanghai | |
| - name: Opened | |
| uses: lowlighter/metrics@latest | |
| with: | |
| filename: followup.svg | |
| token: ${{ secrets.METRICS_TOKEN }} | |
| output_action: gist | |
| committer_gist: ${{ secrets.GISTS }} | |
| base: "" | |
| plugin_followup: yes | |
| plugin_followup_indepth: yes | |
| plugin_followup_archived: yes |