Disable title card #2
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 to | |
| # generate three SVGs, one each for contribution stats, | |
| # repositories stats, and the language distribution chart, using | |
| # the dark color theme. It uses the image-file input to assign each | |
| # SVG a unique filename. It is configured on a daily | |
| # schedule at 3am. | |
| name: user-statistician | |
| on: | |
| schedule: | |
| - cron: '0 3 * * *' | |
| push: | |
| branches: [ main, master ] | |
| paths: [ '.github/workflows/multiple-stats-cards.yml' ] | |
| workflow_dispatch: | |
| jobs: | |
| stats: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Generate the languages distribution | |
| uses: cicirello/user-statistician@v1 | |
| with: | |
| image-file: images/languages.svg | |
| colors: dark | |
| include-title: false | |
| hide-keys: general, contributions, repositories | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| - name: Generate the contributions stats | |
| uses: cicirello/user-statistician@v1 | |
| with: | |
| image-file: images/contribs.svg | |
| colors: dark | |
| hide-keys: general, languages, repositories | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| - name: Generate the repositories stats | |
| uses: cicirello/user-statistician@v1 | |
| with: | |
| image-file: images/repos.svg | |
| colors: dark | |
| hide-keys: general, contributions, languages | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |