Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ jobs:
run: |
git status

# On self-hosted runners the workspace persists and files can end up
# 755; hooks that rewrite files preserve the mode, producing a
# 644→755 diff that fails pre-commit.
- name: Ignore file-mode changes
run: git config core.fileMode false

- name: Run pre-commit
uses: pre-commit/action@v3.0.1
with:
Expand Down
Loading