소스 검색

Also disable line ending conversion for merge workflows (#17953)

Joel Challis 2 년 전
부모
커밋
0002b1cc20
2개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      .github/workflows/develop_update.yml
  2. 4 0
      .github/workflows/feature_branch_update.yml

+ 4 - 0
.github/workflows/develop_update.yml

@@ -17,6 +17,10 @@ jobs:
         token: ${{ secrets.QMK_BOT_TOKEN }}
         fetch-depth: 0
 
+    - name: Disable automatic eol conversion
+      run: |
+        echo "* -text" > .git/info/attributes
+
     - name: Checkout develop
       run: |
         git fetch origin master develop

+ 4 - 0
.github/workflows/feature_branch_update.yml

@@ -22,6 +22,10 @@ jobs:
         token: ${{ secrets.QMK_BOT_TOKEN }}
         fetch-depth: 0
 
+    - name: Disable automatic eol conversion
+      run: |
+        echo "* -text" > .git/info/attributes
+
     - name: Checkout branch
       run: |
         git fetch origin develop ${{ matrix.branch }}