From 879e8613184854897a220aa3e85c175b34ab4c27 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 8 Jun 2023 11:24:10 +0300 Subject: [PATCH] feat(actions): Update gist with WakaTime stats --- .github/workflows/waka-box.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/waka-box.yml diff --git a/.github/workflows/waka-box.yml b/.github/workflows/waka-box.yml new file mode 100644 index 0000000..a384eeb --- /dev/null +++ b/.github/workflows/waka-box.yml @@ -0,0 +1,19 @@ +name: Update gist with WakaTime stats + +on: + schedule: + - cron: "5 4 * * *" + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + - name: Update gist + uses: matchai/waka-box@v5.0.0 + env: + GIST_ID: ${{ secrets.WAKA_BOX_GIST_ID }} + GH_TOKEN: ${{ secrets.WAKA_BOX_GH_TOKEN }} + WAKATIME_API_KEY: ${{ secrets.WAKA_BOX_WAKATIME_API_KEY }}