We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3381b91 commit 3f0461cCopy full SHA for 3f0461c
1 file changed
.github/workflows/dark.yml
@@ -0,0 +1,30 @@
1
+# This workflow configures the user-statistician with the
2
+# dark color theme, but otherwise uses all of
3
+# the defaults. It is configured on a daily schedule at 3am.
4
+
5
+name: user-statistician
6
7
+on:
8
+ schedule:
9
+ - cron: '0 3 * * *'
10
+ push:
11
+ branches: [ main, master ]
12
+ paths: [ '.github/workflows/dark.yml' ]
13
+ workflow_dispatch:
14
15
+jobs:
16
+ stats:
17
+ runs-on: ubuntu-latest
18
+ permissions:
19
+ contents: write
20
21
+ steps:
22
+ - uses: actions/checkout@v4
23
24
+ - name: Generate the user stats image
25
+ uses: cicirello/user-statistician@v1
26
+ with:
27
+ colors: dark
28
+ hide-keys: followers, following, sponsors
29
+ env:
30
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments