Metrics #7197
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 (each hour) | |
schedule: [{cron: "0 * * * *"}] | |
# Lines below let you run workflow manually and on each commit (optional) | |
workflow_dispatch: | |
push: {branches: ["main"]} | |
jobs: | |
notable: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
filename: notable.svg | |
token: ${{ secrets.METRICS_SECRET }} | |
committer_token: ${{ secrets.GITHUB_TOKEN }} | |
base: "" | |
plugin_notable: yes | |
plugin_notable_indepth: yes | |
plugin_notable_repositories: yes | |
github-metrics: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
filename: header.svg | |
# You'll need to setup a personal token in your secrets. | |
token: ${{ secrets.METRICS_SECRET }} | |
# GITHUB_TOKEN is a special auto-generated token used for commits | |
committer_token: ${{ secrets.GITHUB_TOKEN }} | |
# Options | |
user: pvdrz | |
template: classic | |
base: header | |
config_timezone: ${{ secrets.USER_TIMEZONE }} | |
lines: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
filename: lines-of-code.svg | |
token: ${{ secrets.METRICS_SECRET }} | |
committer_token: ${{ secrets.GITHUB_TOKEN }} | |
base: "repositories" | |
plugin_lines: yes | |
acti_comm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
filename: acti_comm.svg | |
# You'll need to setup a personal token in your secrets. | |
token: ${{ secrets.METRICS_SECRET }} | |
# GITHUB_TOKEN is a special auto-generated token used for commits | |
committer_token: ${{ secrets.GITHUB_TOKEN }} | |
# Options | |
user: pvdrz | |
template: classic | |
base: activity, community | |
config_timezone: ${{ secrets.USER_TIMEZONE }} | |
iso_calender: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
filename: iso_calender.svg | |
# You'll need to setup a personal token in your secrets. | |
token: ${{ secrets.METRICS_SECRET }} | |
# GITHUB_TOKEN is a special auto-generated token used for commits | |
committer_token: ${{ secrets.GITHUB_TOKEN }} | |
# Options | |
user: pvdrz | |
template: classic | |
base: "" | |
config_timezone: ${{ secrets.USER_TIMEZONE }} | |
plugin_isocalendar: yes | |
plugin_isocalendar_duration: half-year | |
habits: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
filename: github-habits.svg | |
token: ${{ secrets.METRICS_SECRET }} | |
committer_token: ${{ secrets.GITHUB_TOKEN }} | |
config_timezone: ${{ secrets.USER_TIMEZONE }} # Set timezone | |
user: pvdrz | |
base: "" | |
template: classic | |
plugin_habits: yes | |
plugin_habits_from: 200 # Use 200 events to compute habits | |
plugin_habits_days: 14 # Keep only events from last 14 days | |
plugin_habits_charts: yes # Display charts section | |
plugin_habits_trim: yes # Trim unused hours on daily chart | |
issue_pr_lang: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
filename: issue_pr_lang.svg | |
# You'll need to setup a personal token in your secrets. | |
token: ${{ secrets.METRICS_SECRET }} | |
# GITHUB_TOKEN is a special auto-generated token used for commits | |
committer_token: ${{ secrets.GITHUB_TOKEN }} | |
# Options | |
user: pvdrz | |
template: classic | |
base: "" | |
config_timezone: ${{ secrets.USER_TIMEZONE }} | |
plugin_followup: yes | |
plugin_languages: yes | |
plugin_followup_sections: "user" | |
repositories: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
filename: repositories.svg | |
# You'll need to setup a personal token in your secrets. | |
token: ${{ secrets.METRICS_SECRET }} | |
# GITHUB_TOKEN is a special auto-generated token used for commits | |
committer_token: ${{ secrets.GITHUB_TOKEN }} | |
# Options | |
user: pvdrz | |
template: classic | |
base: repositories | |
config_timezone: ${{ secrets.USER_TIMEZONE }} |