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

master
Joel Challis 2022-08-08 19:05:41 +01:00 committed by GitHub
parent a3b06fd87c
commit 0002b1cc20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -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

View File

@ -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 }}