diff mbox series

[v2] ci: fix inconsistent indentation

Message ID pull.823.v2.git.git.1598002046754.gitgitgadget@gmail.com (mailing list archive)
State Accepted
Commit 1a753720c3c416ed53e985ace9f8f1232118c516
Headers show
Series [v2] ci: fix inconsistent indentation | expand

Commit Message

Linus Arver via GitGitGadget Aug. 21, 2020, 9:27 a.m. UTC
From: Adrian Moennich <adrian@planetcoding.net>

While YAML allows different indentation styles as long as each block is
consistent, it is rather unusual to mix different indentations in a
single file.  Therefor I unified the file to use two-space indentation
everywhere.

Signed-off-by: Adrian Moennich <adrian@planetcoding.net>
---
    Fix inconsistent yaml indentation

Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-823%2FThiefMaster%2Fpatch-1-v2
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-823/ThiefMaster/patch-1-v2
Pull-Request: https://github.com/git/git/pull/823

Range-diff vs v1:

 1:  5301e3842e ! 1:  d398122a6a ci: fix inconsistent indentation
     @@ Metadata
       ## Commit message ##
          ci: fix inconsistent indentation
      
     +    While YAML allows different indentation styles as long as each block is
     +    consistent, it is rather unusual to mix different indentations in a
     +    single file.  Therefor I unified the file to use two-space indentation
     +    everywhere.
     +
          Signed-off-by: Adrian Moennich <adrian@planetcoding.net>
      
       ## .github/workflows/main.yml ##


 .github/workflows/main.yml | 56 +++++++++++++++++++-------------------
 1 file changed, 28 insertions(+), 28 deletions(-)


base-commit: 675a4aaf3b226c0089108221b96559e0baae5de9

Comments

Junio C Hamano Aug. 21, 2020, 7:11 p.m. UTC | #1
Thanks.
diff mbox series

Patch

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 44e0fe5839..30425404eb 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -7,34 +7,34 @@  env:
 
 jobs:
   ci-config:
-      runs-on: ubuntu-latest
-      outputs:
-        enabled: ${{ steps.check-ref.outputs.enabled }}
-      steps:
-        - name: try to clone ci-config branch
-          continue-on-error: true
-          run: |
-            git -c protocol.version=2 clone \
-              --no-tags \
-              --single-branch \
-              -b ci-config \
-              --depth 1 \
-              --no-checkout \
-              --filter=blob:none \
-              https://github.com/${{ github.repository }} \
-              config-repo &&
-              cd config-repo &&
-              git checkout HEAD -- ci/config
-        - id: check-ref
-          name: check whether CI is enabled for ref
-          run: |
-            enabled=yes
-            if test -x config-repo/ci/config/allow-ref &&
-               ! config-repo/ci/config/allow-ref '${{ github.ref }}'
-            then
-              enabled=no
-            fi
-            echo "::set-output name=enabled::$enabled"
+    runs-on: ubuntu-latest
+    outputs:
+      enabled: ${{ steps.check-ref.outputs.enabled }}
+    steps:
+      - name: try to clone ci-config branch
+        continue-on-error: true
+        run: |
+          git -c protocol.version=2 clone \
+            --no-tags \
+            --single-branch \
+            -b ci-config \
+            --depth 1 \
+            --no-checkout \
+            --filter=blob:none \
+            https://github.com/${{ github.repository }} \
+            config-repo &&
+            cd config-repo &&
+            git checkout HEAD -- ci/config
+      - id: check-ref
+        name: check whether CI is enabled for ref
+        run: |
+          enabled=yes
+          if test -x config-repo/ci/config/allow-ref &&
+             ! config-repo/ci/config/allow-ref '${{ github.ref }}'
+          then
+            enabled=no
+          fi
+          echo "::set-output name=enabled::$enabled"
 
   windows-build:
     needs: ci-config