From 88d025daace381ca00a245fd4ee700a5a9acafb3 Mon Sep 17 00:00:00 2001 From: Athul Cyriac Ajay Date: Fri, 10 Jul 2020 08:59:19 +0530 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..4a3b8d4 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,24 @@ +# This is a basic workflow to help you get started with Actions + +name: Waka Readme + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + 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 }} +