Change h3 tag to strong and h3 for emphasis #25
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: KernelBot Metrics | |
| on: | |
| schedule: [{cron: "0 0 * * *"}] | |
| workflow_dispatch: | |
| push: {branches: ["master", "main"]} | |
| permissions: | |
| contents: write | |
| jobs: | |
| github-metrics: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: lowlighter/metrics@latest | |
| with: | |
| token: ${{ secrets.METRICS_TOKEN }} | |
| committer_token: ${{ secrets.METRICS_TOKEN }} | |
| user: GaabDevWeb # <--- Usei o user que apareceu no seu log | |
| template: classic | |
| base: "" # Agora vai funcionar porque o plugin de linguagens dará o conteúdo | |
| config_timezone: America/Sao_Paulo | |
| config_display: large | |
| # PLUGIN: IDIOMAS (Focado no que você codou) | |
| plugin_languages: yes | |
| plugin_languages_details: lines, percentage | |
| plugin_languages_indepth: yes | |
| plugin_languages_analysis_timeout: 15 | |
| # PLUGIN: ATIVIDADE (Linhas de código) | |
| plugin_lines: yes | |
| # PLUGIN: WORKFLOW (Issues e PRs) | |
| plugin_followup: yes | |
| plugin_followup_sections: repositories | |
| # PLUGIN: HÁBITOS (O visual brutalista de barras) | |
| plugin_habits: yes | |
| plugin_habits_charts: yes | |
| plugin_habits_trim: yes | |
| # OUTPUT | |
| filename: kernel-status.svg | |
| output_action: commit | |
| committer_branch: main |