We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
chmod 644
1 parent e7b8326 commit 941227eCopy full SHA for 941227e
2 files changed
.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
@@ -117,6 +117,14 @@ repos:
117
args: [--config=.github/linters/.markdown-lint.yml]
118
types: [markdown]
119
files: \.(md|mdown|markdown)$
120
+ - repo: https://github.com/Lucas-C/pre-commit-hooks
121
+ rev: v1.5.5
122
+ hooks:
123
+ - id: chmod
124
+ name: set file permissions
125
+ args: ['644']
126
+ files: \.md$
127
+ stages: [manual]
128
- repo: https://github.com/adrienverge/yamllint
129
rev: v1.37.1
130
hooks:
0 commit comments