# Dev Metrics in Readme [Wakatime](https://wakatime.com) Weekly Metrics on your Profile Readme ## Update your Readme Add a comment to your README like the follows ```md ``` The lines will be our entrypoints for our metrics. ## Using it - Get a GitHub Access Token with a `repo` scope and save it in the Repo Secrets `GH_TOKEN = ` - Get your Wakatime API Key and save it as `WAKATIME_API_KEY = ` in your Repository Secrets That's it. The Action runs everyday at 00.00 UTC ---- Here is Sample Worflow File ```yml name: Waka Readme on: push: branches: [ master ] schedule: # Runs at 12am UTC - cron: '0 0 * * *' jobs: build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Update Readme uses: athul/waka-readme@master with: WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} GH_TOKEN: ${{ secrets.GH_TOKEN}} USERNAME: # optional, it will automaticially use the username that executing the workflow ```