Build Graph #1577
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: Build Graph | |
| on: | |
| schedule: | |
| # Runs at 12 am '0 0 * * *' UTC | |
| - cron: '1 0 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| update-readme: | |
| name: Update the WakaTime Stat | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Use avinal/Profile-Readme-WakaTime@<latest-release-tag> for latest stable release | |
| # Do not change the line below except the word master with tag number maybe | |
| - uses: avinal/Profile-Readme-WakaTime@master | |
| with: | |
| WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} | |
| GITHUB_TOKEN: ${{ github.token }} | |
| BRANCH: "main" | |
| COMMIT_MSG: "new stats received :dog:" |