From 64956450ad11e502b4c57bd7370f6f74cd73888e Mon Sep 17 00:00:00 2001 From: Animesh Kumar Date: Fri, 5 Apr 2024 21:13:27 +0530 Subject: [PATCH] chore: indent fix --- .github/workflows/validate-examples.yml | 26 ++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/validate-examples.yml b/.github/workflows/validate-examples.yml index 54788639..42f6bc1a 100644 --- a/.github/workflows/validate-examples.yml +++ b/.github/workflows/validate-examples.yml @@ -13,16 +13,16 @@ jobs: validate-examples: - name: Validate Spec Examples runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - name: Find YAML files - run: | - files=$(find examples/ \( -path 'examples/social-media/*' -prune \) -o -type f \( -name "*.yml" -o -name "*.yaml" \)) - echo "::set-output name=files::$files" - - name: Validate AsyncAPI documents - uses: asyncapi/github-action-for-cli@v3.1.1 - with: - command: custom - arguments: | - validate ${{ steps.FindYAMLFiles.outputs.files }} + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Find YAML files + run: | + files=$(find examples/ \( -path 'examples/social-media/*' -prune \) -o -type f \( -name "*.yml" -o -name "*.yaml" \)) + echo "::set-output name=files::$files" + - name: Validate AsyncAPI documents + uses: asyncapi/github-action-for-cli@v3.1.1 + with: + command: custom + arguments: | + validate ${{ steps.FindYAMLFiles.outputs.files }}