GitHub 统计信息 #460
This file contains hidden or 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: GitHub 统计信息 | |
| on: | |
| schedule: | |
| - cron: "0 2 * * *" # 每天凌晨2点运行 | |
| workflow_dispatch: # 允许手动触发 | |
| jobs: | |
| github-metrics: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: 检出代码 | |
| uses: actions/checkout@v3 | |
| - name: 生成 GitHub 统计信息 | |
| uses: lowlighter/metrics@latest | |
| with: | |
| token: ${{ secrets.METRICS_TOKEN }} | |
| user: codingmesh | |
| template: classic | |
| base: header, activity, community, repositories, metadata | |
| config_timezone: Asia/Shanghai | |
| 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% |