Replies: 2 comments 1 reply
-
Hi 👋 ! The recently used languages section use the commits that are fetched from your activity feed, so if you're very active the push events may disappear from it (like comments, issues, pr, wiki edition, repo creation, etc.), you may have some luck by increasing
If you're talking about the commits count displayed in the activity section, then it's because these are separate plugins, which usually fetch their data independantly (in this case directly from GraphQL) so usually stats from different plugins are not directly related
It could be because you set |
Beta Was this translation helpful? Give feedback.
-
Also having this problem, going back into last year. Broke sometime between 15 Sep 18:33 https://github.com/Nixinova/Nixinova/blob/2ad5ad8e02c8e6cdacb9b8986701d7b55293b1b7/github-metrics.svg and 18 Sep 18:31 https://github.com/Nixinova/Nixinova/blob/bffe99800c2a8e60ece4d875963384838978e878/github-metrics.svg UTC 2022. There's no commits to this repo during that time though... Metrics yaml workflow codename: Metrics
on:
schedule:
- cron: "0 18 * * */4"
workflow_dispatch: # enabled
jobs:
github-metrics:
runs-on: ubuntu-latest
steps:
- uses: lowlighter/metrics@master
with:
token: ${{ secrets.METRICS_TOKEN }}
committer_token: ${{ secrets.GITHUB_TOKEN }}
committer_branch: metrics
template: classic
repositories_affiliations: ''
commits_authoring: Nixinova
config_timezone: Pacific/Auckland # NZT
plugin_lines: yes
plugin_traffic: yes
plugin_followup: yes
plugin_followup_indepth: yes
plugin_followup_sections: repositories, user
plugin_discussions: yes
plugin_languages: yes
plugin_languages_details: percentage, lines
plugin_languages_sections: most-used, recently-used
plugin_languages_categories: programming
plugin_languages_recent_categories: programming, markup
plugin_languages_indepth: yes
plugin_gists: yes
plugin_topics: yes
plugin_topics_sort: stars
plugin_topics_mode: mastered
plugin_topics_limit: 0 # disable
plugin_isocalendar: yes
plugin_isocalendar_duration: full-year
plugin_activity: yes
plugin_activity_limit: 5
plugin_activity_timestamps: yes
plugin_code: yes
plugin_reactions: yes
plugin_reactions_details: count
plugin_reactions_limit: 200
plugin_wakatime: yes
plugin_wakatime_token: ${{ secrets.WAKATIME_TOKEN }}
plugin_wakatime_days: 14
plugin_wakatime_limit: 4
plugin_wakatime_repositories_visibility: public
|
Beta Was this translation helpful? Give feedback.
-
I haven't touched my config for a while and I've recently noticed that the "Recently used languages" section is empty:
However, I have made several commits in the last week. All were pushed to private repositories, but that didn't cause any issues before.
The commits seem to get detected, because the commits count gets increased. Any ideas why this could happen?
I do have quite a lot of repositories (the plugin reports 95, while github shows 92, no idea why), the languages don't update even when I push to an older repo though.
Beta Was this translation helpful? Give feedback.
All reactions