Metrics #2062
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 updates (every 24 hours) | |
schedule: [{cron: "0 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 | |
timeout-minutes: 30 | |
steps: | |
- uses: lowlighter/metrics@latest | |
with: | |
# Your GitHub token | |
token: ${{ secrets.TOKEN }} | |
verify: yes | |
# Options | |
user: sconaway | |
template: classic | |
base: header, activity, community, repositories, metadata | |
config_timezone: America/Boise | |
# plugin_followup: yes | |
# plugin_followup_sections: repositories,user | |
# plugin_introduction: yes | |
# plugin_introduction_title: yes | |
plugin_languages: yes | |
plugin_languages_colors: github | |
plugin_languages_ignored: ruby,objective-c,java | |
plugin_languages_limit: 8 | |
plugin_languages_sections: most-used | |
plugin_languages_threshold: 5% | |
plugin_lines: yes | |
# plugin_notable: yes | |
# plugin_stars: yes | |
# plugin_stars_limit: 4 | |
plugin_topics: yes | |
plugin_topics_limit: 15 | |
plugin_topics_mode: starred | |
plugin_topics_sort: stars | |
plugin_traffic: yes | |
plugin_wakatime: yes | |
plugin_wakatime_days: 14 | |
plugin_wakatime_token: ${{ secrets.WAKATIME_TOKEN }} |