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

This commit is contained in:
Joel Challis
2022-08-08 19:05:41 +01:00
committed by GitHub
부모 a3b06fd87c
커밋 0002b1cc20
2개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

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

파일 보기

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