-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (40 loc) · 1.39 KB
/
Copy pathupdate-stats.yml
File metadata and controls
44 lines (40 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Update GitHub Stats
on:
schedule:
- cron: '0 6 * * 1' # Every Monday at 6:00 AM UTC
workflow_dispatch: # Allow manual trigger
jobs:
github-metrics:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Generate GitHub Stats
uses: lowlighter/metrics@latest
with:
token: ${{ secrets.METRICS_TOKEN }}
user: BadgerOps
template: classic
base: header, activity, community, repositories
filename: stats/github-stats.svg
config_timezone: America/Denver
- name: Generate Top Languages
uses: lowlighter/metrics@latest
with:
token: ${{ secrets.METRICS_TOKEN }}
user: BadgerOps
template: classic
base: ""
filename: stats/top-langs.svg
config_timezone: America/Denver
plugin_languages: yes
plugin_languages_ignored: html, css, tex, less, dockerfile, makefile, scss, rust
plugin_languages_indepth: yes
plugin_languages_limit: 8
plugin_languages_sections: most-used
plugin_languages_details: lines, percentage
plugin_languages_categories: programming
plugin_languages_colors: github
plugin_languages_threshold: 0%
plugin_languages_analysis_timeout: 15
plugin_languages_analysis_timeout_repositories: 5