Metrics #32147
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
name: Metrics | |
on: | |
# Schedule updates | |
schedule: [{cron: "0 * * * *"}] | |
push: {branches: "master"} | |
jobs: | |
github-metrics: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
# You'll need to setup a personal token in your secrets. | |
token: ${{ secrets.METRICS_TOKEN }} | |
# GITHUB_TOKEN is a special auto-generated token used for commits | |
committer_token: ${{ secrets.GITHUB_TOKEN }} | |
# Options | |
user: injoon5 | |
template: classic | |
base: header, activity, community, repositories, metadata | |
config_timezone: Asia/Seoul | |
plugin_followup: yes | |
plugin_isocalendar: yes | |
plugin_isocalendar_duration: full-year | |
plugin_languages: yes | |
plugin_stars: yes | |
plugin_stars_limit: 1 | |
plugin_people: yes | |
plugin_people_limit: 10 | |
plugin_people_size: 60 | |
plugin_people_thanks: NotANumber-1, rnaudah | |
plugin_people_types: followers, following, thanks | |
plugin_lines: yes | |
plugin_habits_from: 200 # Use 200 events to compute habits | |
plugin_habits_days: 14 # Keep only events from last 14 days | |
plugin_habits_facts: yes # Display facts section | |
plugin_habits_charts: yes | |
plugin_topics: yes | |
plugin_topics_sort: stars | |
plugin_topics_limit: 10 | |