Waka Readme #1661
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: Waka Readme | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Runs at 12am UTC | |
| - cron: "0 22 * * *" | |
| jobs: | |
| update-readme: | |
| name: Update this repo's README | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: athul/waka-readme@master | |
| with: | |
| # GitHub access token with Repo scope | |
| # GH_TOKEN: # default is ${{ github.token }} | |
| # Your Wakatime API Key | |
| WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} | |
| # Your GitHub repository | |
| # REPOSITORY: # optional, default is ${{ github.repository }} | |
| # Displays the week number and days in Readme as title | |
| SHOW_TITLE: true # optional | |
| # Add a commit message of your choice | |
| # COMMIT_MESSAGE: # optional, default is Updated the Graph with new Metrics | |
| # Add the progress blocks of your choice | |
| BLOCKS: ⣀⣄⣤⣦⣶⣷⣿ # optional, default is ░▒▓█ | |
| SHOW_TOTAL: true |