mirror of
https://github.com/PacketParker/PacketParker.git
synced 2025-04-18 21:24:48 -05:00
42 lines
1.5 KiB
YAML
42 lines
1.5 KiB
YAML
# Visit https://github.com/lowlighter/metrics#-documentation for full reference
|
|
name: Metrics
|
|
on:
|
|
schedule: [{cron: "0 0 * * *"}]
|
|
workflow_dispatch:
|
|
push: {branches: ["master", "main"]}
|
|
jobs:
|
|
github-metrics:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
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: PacketParker
|
|
template: classic
|
|
base: header, activity, community, repositories, metadata
|
|
config_timezone: America/Chicago
|
|
plugin_traffic: yes
|
|
plugin_languages: yes
|
|
plugin_languages_analysis_timeout: 15
|
|
plugin_languages_analysis_timeout_repositories: 7.5
|
|
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%
|