Metrics #33033
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
| # Visit https://github.com/lowlighter/metrics/blob/master/action.yml for full reference | |
| # credits to @SaicharanKandukuri & Me | |
| 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 | |
| token: ${{ secrets.METRICS_TOCKEN }} | |
| # Options | |
| user: Ayon-SSP | |
| template: classic | |
| base: header, activity, community, repositories, metadata | |
| config_timezone: Asia/Calcutta | |
| # π Introduction | |
| plugin_introduction: yes | |
| plugin_introduction_title: yes | |
| # π Achievements | |
| plugin_achievements: yes | |
| plugin_achievements_threshold: C | |
| # π·οΈ Languages activity | |
| plugin_languages: yes | |
| plugin_languages_limit: 10 | |
| plugin_languages_other: yes | |
| plugin_languages_details: bytes-size, lines | |
| plugin_languages_indepth: yes | |
| # plugin_languages_skipped: lowlighter/metrics | |
| # plugin_languages_ignored: jupyter notebook | |
| # html, css, tex, less, dockerfile, makefile, qmake, lex, cmake, shell, | |
| # gnuplot | |
| # plugin_languages_categories: most-used | |
| # plugin_languages_sections: most-used | |
| # β Random code snippet | |
| plugin_code: yes | |
| plugin_code_languages: python, php | |
| # π GitHub Skyline | |
| plugin_skyline: yes | |
| plugin_skyline_year: 2022 | |
| plugin_skyline_frames: 6 | |
| plugin_skyline_quality: 1 | |
| plugin_skyline_settings: | | |
| { | |
| "url": "https://honzaap.github.io/GithubCity?name=${login}&year=${year}", | |
| "ready": "[...document.querySelectorAll('.display-info span')].map(span => span.innerText).includes('${login}')", | |
| "wait": 4, | |
| "hide": ".github-corner, .footer-link, .buttons-options, .mobile-rotate, .display-info span:first-child" | |
| } | |
| # ποΈ Follow-up of issues and pull requests | |
| plugin_followup: yes | |
| plugin_followup_indepth: yes | |
| # π³οΈ Leetcode | |
| plugin_leetcode: yes | |
| plugin_leetcode_user : ayon_ssp | |
| plugin_leetcode_sections: solved, skills, recent | |
| # π€ Latest tweets | |
| plugin_tweets: yes | |
| plugin_tweets_token: ${{ secrets.TWITTER_TOKEN }} | |
| plugin_tweets_user: ayonssp | |
| plugin_tweets_attachments: yes | |
| # π¨βπ» Lines of code changed | |
| plugin_lines: yes | |
| plugin_lines_sections: repositories | |
| # plugin_lines_sections: base # only in the top | |
| plugin_lines_repositories_limit: 4 | |
| plugin_lines_history_limit: 10 | |
| # π Starred topics | |
| plugin_topics: yes | |
| plugin_topics_limit: 0 | |
| plugin_topics_mode: icons | |
| # π Recently starred repositories | |
| plugin_stars: yes | |
| plugin_stars_limit: 3 | |
| # π§βπ€βπ§ People | |
| plugin_people: yes | |
| plugin_people_types: followers | |
| plugin_people_limit: 100 | |
| # π Featured repositories | |
| plugin_repositories: yes | |
| plugin_repositories_pinned: 2 | |
| # π₯ Fortune | |
| plugin_fortune: yes | |
| # β° WakaTime | |
| plugin_wakatime: yes | |
| plugin_wakatime_token: ${{ secrets.WAKATIME_TOKEN }} | |
| plugin_wakatime_sections: time, languages, languages-graphs, projects, projects-graphs, editors, os, os-graphs, editors-graphs | |
| plugin_wakatime_days: 365 | |
| # π« Gists | |
| plugin_gists: yes |