mirror of
https://github.com/marvinscham/marvinscham.git
synced 2025-12-06 10:10:47 +01:00
66 lines
2.3 KiB
YAML
66 lines
2.3 KiB
YAML
# Visit https://github.com/lowlighter/metrics/blob/master/action.yml for full reference
|
|
name: Metrics
|
|
on:
|
|
schedule: [{cron: "0 4 * * *"}]
|
|
# Lines below let you run workflow manually and on each commit
|
|
workflow_dispatch:
|
|
jobs:
|
|
metrics:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
|
|
- name: Left Panel
|
|
if: ${{ success() || failure() }}
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
filename: left-panel.svg
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
base: header, activity, community, repositories, metadata
|
|
output_action: gist
|
|
committer_gist: ${{ secrets.GISTS_TOKEN }}
|
|
template: classic
|
|
config_timezone: Europe/Berlin
|
|
plugin_followup: yes
|
|
plugin_followup_sections: user, repositories
|
|
plugin_languages: yes
|
|
plugin_languages_analysis_timeout: 15
|
|
plugin_languages_categories: markup, programming
|
|
plugin_languages_colors: github
|
|
plugin_languages_limit: 8
|
|
plugin_languages_recent_categories: markup, programming, data, prose
|
|
plugin_languages_recent_days: 14
|
|
plugin_languages_recent_load: 300
|
|
plugin_languages_sections: most-used
|
|
plugin_languages_threshold: 0%
|
|
|
|
- name: Right Panel
|
|
if: ${{ success() || failure() }}
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
filename: right-panel.svg
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
base: ""
|
|
output_action: gist
|
|
committer_gist: ${{ secrets.GISTS_TOKEN }}
|
|
template: classic
|
|
config_timezone: Europe/Berlin
|
|
plugin_activity: yes
|
|
plugin_activity_days: 14
|
|
plugin_activity_filter: all
|
|
plugin_activity_limit: 5
|
|
plugin_activity_load: 300
|
|
plugin_activity_visibility: all
|
|
plugin_activity_skipped: marvinscham/marvinscham
|
|
plugin_isocalendar: yes
|
|
plugin_isocalendar_duration: half-year
|
|
plugin_wakatime: yes
|
|
plugin_wakatime_token: ${{ secrets.WAKA_TOKEN }}
|
|
plugin_wakatime_days: 30
|
|
plugin_wakatime_sections: time, projects-graphs, languages-graphs, editors
|
|
plugin_wakatime_user: marvinscham
|
|
plugin_wakatime_url: https://waka.xn--schmkerei-37a.de
|
|
|
|
|