├── README.md └── .github └── workflows └── metrics.yml /README.md: -------------------------------------------------------------------------------- 1 | ### Hi there 👋 2 | 3 | [![Follow me on Twitter](https://img.shields.io/twitter/follow/forgedhallpass?style=social)](https://twitter.com/intent/user?screen_name=forgedhallpass) 4 | 5 | ![Metrics](./github-metrics.svg) -------------------------------------------------------------------------------- /.github/workflows/metrics.yml: -------------------------------------------------------------------------------- 1 | # Visit https://github.com/lowlighter/metrics/blob/master/action.yml for full reference 2 | name: Metrics 3 | on: 4 | schedule: [{cron: "0 0 * * *"}] 5 | # Lines below let you run workflow manually and on each commit 6 | workflow_dispatch: 7 | push: {branches: ["master", "main"]} 8 | jobs: 9 | github-metrics: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: forgedhallpass/github-metrics@master 13 | with: 14 | # Your GitHub token 15 | # The following scopes are required: 16 | # - public_access (default scope) 17 | # The following additional scopes may be required: 18 | # - read:org (for organization related metrics) 19 | # - read:user (for user related data) 20 | # - repo (optional, if you want to include private repositories) 21 | token: ${{ secrets.METRICS_TOKEN }} 22 | 23 | # Options 24 | user: forgedhallpass 25 | template: classic 26 | base: header, activity, repositories, metadata 27 | config_timezone: UTC 28 | plugin_achievements: yes 29 | plugin_achievements_display: detailed 30 | plugin_achievements_secrets: yes 31 | plugin_achievements_threshold: C 32 | plugin_discussions: yes 33 | plugin_discussions_categories: yes 34 | plugin_languages: yes 35 | plugin_languages_analysis_timeout: 15 36 | plugin_languages_categories: markup, programming 37 | plugin_languages_colors: github 38 | plugin_languages_limit: 8 39 | plugin_languages_recent_categories: markup, programming 40 | plugin_languages_recent_days: 14 41 | plugin_languages_recent_load: 300 42 | plugin_languages_sections: most-used 43 | plugin_languages_threshold: 0% 44 | plugin_lines: yes 45 | plugin_notable: yes 46 | plugin_notable_from: all 47 | plugin_notable_indepth: yes 48 | plugin_notable_skipped: aramrami/OWASP-CSRFGuard 49 | plugin_notable_types: commit 50 | repositories_affiliations: owner, maintainer, member, collaborator 51 | repositories_forks: yes 52 | --------------------------------------------------------------------------------