Create metrics.yml
parent
48ada72359
commit
4c667a928c
|
@ -0,0 +1,58 @@
|
|||
# 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:
|
||||
- uses: lowlighter/metrics@latest
|
||||
with:
|
||||
# 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 }}
|
||||
|
||||
# Options
|
||||
user: crimsontome
|
||||
template: classic
|
||||
base: header, activity, community, repositories, metadata
|
||||
config_timezone: Europe/London
|
||||
plugin_achievements: yes
|
||||
plugin_achievements_display: detailed
|
||||
plugin_achievements_secrets: yes
|
||||
plugin_achievements_threshold: C
|
||||
plugin_activity: yes
|
||||
plugin_activity_days: 14
|
||||
plugin_activity_filter: all
|
||||
plugin_activity_limit: 5
|
||||
plugin_activity_load: 300
|
||||
plugin_activity_visibility: all
|
||||
plugin_introduction: yes
|
||||
plugin_introduction_title: yes
|
||||
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
|
||||
plugin_languages_recent_days: 14
|
||||
plugin_languages_recent_load: 300
|
||||
plugin_languages_sections: most-used
|
||||
plugin_languages_threshold: 0%
|
||||
plugin_lines: yes
|
||||
plugin_repositories: 100
|
||||
plugin_repositories: yes
|
||||
plugin_repositories_affiliations: owner
|
||||
plugin_repositories_batch: 100
|
||||
plugin_stars: yes
|
||||
plugin_stars_limit: 4
|
Loading…
Reference in New Issue