We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
chmod 644
1 parent 96ccd7e commit 489e528Copy full SHA for 489e528
.github/workflows/linter.yml
@@ -45,3 +45,5 @@ jobs:
45
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
46
- name: Run pre-commit
47
run: pre-commit run --all-files
48
+ - name: Run manual pre-commit hooks
49
+ run: pre-commit run --all-files --hook-stage manual
.pre-commit-config.yaml
@@ -103,3 +103,11 @@ repos:
103
args: [--config=.github/linters/.markdown-lint.yml]
104
types: [markdown]
105
files: \.(md|mdown|markdown)$
106
+ - repo: https://github.com/Lucas-C/pre-commit-hooks
107
+ rev: v1.5.5
108
+ hooks:
109
+ - id: chmod
110
+ name: set file permissions
111
+ args: ['644']
112
+ files: \.md$
113
+ stages: [manual]
0 commit comments