|
|
|
# Visit https://github.com/lowlighter/metrics/blob/master/action.yml for full reference
|
|
|
|
name: Metrics
|
|
|
|
on:
|
|
|
|
# Schedule updates (each hour)
|
|
|
|
schedule: [{cron: "0 * * * *"}]
|
|
|
|
# Lines below let you run workflow manually and on each commit
|
|
|
|
workflow_dispatch:
|
|
|
|
push: {branches: ["master", "main"]}
|
|
|
|
jobs:
|
|
|
|
github-metrics:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: 📊 General
|
|
|
|
uses: lowlighter/metrics@latest
|
|
|
|
with:
|
|
|
|
filename: general.svg
|
|
|
|
# Your GitHub token
|
|
|
|
# The following scopes are required:
|
|
|
|
# - public_access (default scope)
|
|
|
|
# The following additional scopes may be required:
|
|
|
|
# - read:org (for organization related metrics)
|
|
|
|
# - read:user (for user related data)
|
|
|
|
# - read:packages (for some packages related data)
|
|
|
|
# - repo (optional, if you want to include private repositories)
|
|
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
|
|
base: header, activity, repositories, community, metadata
|
|
|
|
config_order: base.header
|
|
|
|
config_timezone: Europe/London
|
|
|
|
user: sgoudham
|
|
|
|
template: classic
|
|
|
|
|
|
|
|
- name: 📊 Introduction
|
|
|
|
uses: lowlighter/metrics@latest
|
|
|
|
with:
|
|
|
|
filename: introduction.svg
|
|
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
|
|
user: sgoudham
|
|
|
|
base: header, activity, repositories, community, metadata
|
|
|
|
config_order: base.header
|
|
|
|
plugin_introduction: yes
|
|
|
|
|
|
|
|
- name: 📊 Recently used
|
|
|
|
uses: lowlighter/metrics@latest
|
|
|
|
with:
|
|
|
|
filename: most-used-langs.svg
|
|
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
|
|
base: ""
|
|
|
|
plugin_languages: yes
|
|
|
|
plugin_lines: yes
|
|
|
|
plugin_languages_details: bytes-size, percentage
|
|
|
|
plugin_languages_limit: 8
|
|
|
|
plugin_languages_analysis_timeout: 15
|
|
|
|
plugin_languages_categories: markup, programming
|
|
|
|
plugin_languages_colors: github
|
|
|
|
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: 📊 Recent activity
|
|
|
|
uses: lowlighter/metrics@latest
|
|
|
|
with:
|
|
|
|
filename: recent-activity.svg
|
|
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
|
|
base: ""
|
|
|
|
plugin_activity: yes
|
|
|
|
plugin_activity_limit: 5
|
|
|
|
plugin_activity_days: 14
|
|
|
|
plugin_activity_filter: issue, pr, release, fork, review, ref/create
|
|
|
|
plugin_activity_load: 300
|
|
|
|
plugin_activity_visibility: public
|
|
|
|
|
|
|
|
- name: 📊 Achivevements
|
|
|
|
uses: lowlighter/metrics@latest
|
|
|
|
with:
|
|
|
|
filename: achievements.svg
|
|
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
|
|
base: ""
|
|
|
|
plugin_achievements: yeS
|
|
|
|
plugin_achievements_display: compact
|
|
|
|
plugin_achievements_secrets: yes
|
|
|
|
plugin_achievements_threshold: C
|