From aca597a4d7d75f4792bebb7c207cbe95d8969613 Mon Sep 17 00:00:00 2001 From: Greg Brimble Date: Sat, 25 Apr 2020 21:07:43 +0100 Subject: [PATCH] Add missing indentation on README.md --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 1a11e5d..b4a70f4 100644 --- a/README.md +++ b/README.md @@ -14,21 +14,21 @@ ```yml name: Update on: - push: - schedule: - - cron: "0 0 * * *" # Every day at midnight + schedule: + - cron: "0 0 * * *" # Every day at midnight + jobs: - deploy: - name: Update - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Run crawler - uses: gregbrimble/tailwindui-crawler-action@v1.0.0 - with: - email: ${{ secrets.TAILWINDUI_EMAIL }} - password: ${{ secrets.TAILWINDUI_PASSWORD }} + update: + name: Update + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Run crawler + uses: gregbrimble/tailwindui-crawler-action@v1.0.0 + with: + email: ${{ secrets.TAILWINDUI_EMAIL}} + password: ${{ secrets.TAILWINDUI_PASSWORD }} ``` Read more about the schedule cron syntax in [the official GitHub Actions documentation](https://help.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule).