Metrics #282
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
# Visit https://github.com/lowlighter/metrics/blob/master/action.yml for full reference | |
name: Metrics | |
on: | |
# Schedule daily updates | |
schedule: [{ cron: "0 0 * * *" }] | |
# Lines below let you run workflow manually and on each commit | |
workflow_dispatch: | |
push: { branches: ["main"] } | |
jobs: | |
github-metrics: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
token: ${{ secrets.METRICS_TOKEN }} | |
user: samx23 | |
template: classic | |
base: header, activity, community, repositories, metadata | |
config_timezone: Asia/Singapore | |
plugin_languages: yes | |
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% |