diff options
Diffstat (limited to '.github/workflows/format_push.yml')
-rw-r--r-- | .github/workflows/format_push.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/format_push.yml b/.github/workflows/format_push.yml index 4b51213b36..910bba9a4e 100644 --- a/.github/workflows/format_push.yml +++ b/.github/workflows/format_push.yml @@ -13,10 +13,14 @@ jobs: container: qmkfm/qmk_cli steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 + - name: Disable automatic eol conversion + run: | + echo "* -text" > .git/info/attributes + - name: Install dependencies run: | pip3 install -r requirements-dev.txt @@ -37,7 +41,7 @@ jobs: git config user.email 'hello@qmk.fm' - name: Create Pull Request - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v4 if: ${{ github.repository == 'qmk/qmk_firmware'}} with: token: ${{ secrets.QMK_BOT_TOKEN }} |