chore: add a fix for the terrible default autocrlf setting git does

This commit is contained in:
Sekwah 2024-06-17 00:16:47 +01:00
parent 088d8e2df3
commit 5cf398b72a
2 changed files with 52 additions and 52 deletions

4
.gitattributes vendored
View File

@ -1,2 +1,2 @@
# Set default behaviour to maintain line endings # Set default behaviour to maintain line endings
* -text * -text

View File

@ -1,50 +1,50 @@
name: Pre-commit consistency check name: Pre-commit consistency check
on: on:
workflow_dispatch: workflow_dispatch:
pull_request: pull_request:
types: [labeled, opened, reopened, synchronize] types: [labeled, opened, reopened, synchronize]
push: push:
branches: [spigot, re-recode] branches: [spigot, re-recode]
concurrency: concurrency:
group: ${{ github.head_ref }}-precommit group: ${{ github.head_ref }}-precommit
cancel-in-progress: true cancel-in-progress: true
jobs: jobs:
pre-commit-check: pre-commit-check:
if: "github.event.action != 'labeled' || github.event.label.name == 'pre-commit ci run'" if: github.event.action != 'labeled' || github.event.label.name == 'pre-commit ci run'
name: Run pre-commit checks name: Run pre-commit checks
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
fetch-depth: 0 fetch-depth: 0
- run: gh pr edit ${{ github.event.number }} --remove-label 'pre-commit ci run' - run: gh pr edit ${{ github.event.number }} --remove-label 'pre-commit ci run'
if: github.event.action == 'labeled' && github.event.label.name == 'pre-commit ci run' if: github.event.action == 'labeled' && github.event.label.name == 'pre-commit ci run'
env: env:
GH_TOKEN: ${{ github.token }} GH_TOKEN: ${{ github.token }}
- uses: dorny/paths-filter@v2 - uses: dorny/paths-filter@v2
id: filter id: filter
with: with:
list-files: shell list-files: shell
filters: | filters: |
addedOrModified: addedOrModified:
- added|modified: '**' - added|modified: '**'
# run only if changed files were detected # run only if changed files were detected
- name: Run against changes - name: Run against changes
uses: pre-commit/action@v3.0.1 uses: pre-commit/action@v3.0.1
if: steps.filter.outputs.addedOrModified == 'true' if: steps.filter.outputs.addedOrModified == 'true'
with: with:
extra_args: --files ${{ steps.filter.outputs.addedOrModified_files }} extra_args: --files ${{ steps.filter.outputs.addedOrModified_files }}
# run if no changed files were detected (e.g. workflow_dispatch on master branch) # run if no changed files were detected (e.g. workflow_dispatch on master branch)
- name: Run against all files - name: Run against all files
uses: pre-commit/action@v2.0.3 uses: pre-commit/action@v2.0.3
if: steps.filter.outputs.addedOrModified != 'true' if: steps.filter.outputs.addedOrModified != 'true'
with: with:
extra_args: --all-files extra_args: --all-files
- uses: pre-commit-ci/lite-action@v1.0.2 - uses: pre-commit-ci/lite-action@v1.0.2
if: always() if: always()