user-statistician #135
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
| # This workflow configures the user-statistician with the | |
| # dark color theme, but otherwise uses all of | |
| # the defaults. It is configured on a daily schedule at 3am. | |
| name: user-statistician | |
| on: | |
| schedule: | |
| - cron: '0 3 * * *' | |
| push: | |
| branches: [ main, master ] | |
| paths: [ '.github/workflows/dark.yml' ] | |
| workflow_dispatch: | |
| jobs: | |
| stats: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Generate the user stats image | |
| uses: cicirello/user-statistician@v1 | |
| with: | |
| colors: dark | |
| hide-keys: followers, following, sponsors | |
| include-title: false | |
| show-border: false | |
| animated-language-chart: true | |
| featured-repository: crosspost-by-post | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |