Work Stats Readme #467
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
| name: Work Stats Readme | |
| on: | |
| workflow_dispatch: # Allows manual triggering of the workflow | |
| schedule: | |
| # Runs at 12 AM UTC (5:30 AM IST) | |
| - cron: "0 0 * * *" | |
| # push: | |
| # branches: | |
| # - main # Change this to your target branch | |
| # - 'releases/**' # Optional: include all release branches | |
| jobs: | |
| update-readme: | |
| name: Update this repo's README | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: athul/waka-readme@master | |
| with: | |
| SHOW_TITLE: true # optional | |
| SECTION_NAME: Weekly Development Breakdown # optional | |
| WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} | |
| BLOCKS: -# #optional | |
| # LANG_COUNT: 10 # optional | |
| TIME_RANGE: all_time | |
| SHOW_TIME: true # optional | |
| IGNORED_LANGUAGES: YAML JSON TOML # optional | |
| ### commit | |
| COMMIT_MESSAGE: Updated waka-readme graph with new metrics # optional |