diff --git a/.github/workflows/waka.yml b/.github/workflows/waka.yml index e624da3..62b57ac 100644 --- a/.github/workflows/waka.yml +++ b/.github/workflows/waka.yml @@ -1,27 +1,27 @@ -name: Waka Readme +name: WakaTime status update on: - workflow_dispatch: schedule: - # Runs at 00:00AM UTC - - cron: '05 0 * * *' + # Runs at 12 am '0 0 * * *' UTC + - cron: '1 0 * * *' jobs: update-readme: - name: Update this repo's README + name: Update the WakaTime Stat runs-on: ubuntu-latest steps: - - uses: ApoorvTyagi/waka-readme-stats@master + # Use avinal/Profile-Readme-WakaTime@ for latest stable release + # Do not change the line below until you have forked this repository + # If you have forked this project you can use /Profile-Readme-WakaTime@master instead + - uses: avinal/Profile-Readme-WakaTime@master with: + # WakaTime API key stored in secrets, do not directly paste it here WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} - GH_TOKEN: ${{ secrets.GH_TOKEN }} - SHOW_PROJECTS: "False" - SHOW_LINES_OF_CODE: "True" - SHOW_LANGUAGE_PER_REPO: "False" - SHOW_LANGUAGE: "True" - SHOW_SHORT_INFO: "False" - SHOW_OS: "True" - SHOW_EDITORS: "False" - SHOW_TIMEZONE: "False" - SHOW_LOC_CHART: "False" - SHOW_PROFILE_VIEWS: "True" + # Automatic github token + GITHUB_TOKEN: ${{ github.token }} + # Branch - newer GitHub repositories have "main" as default branch, change to main in that case, default is master + BRANCH: "master" + # Manual Commit messages - write your own messages here + COMMIT_MSG: "Automated Coding Activity Update :alien:" + +