We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf02500 commit 9446f8aCopy full SHA for 9446f8a
2 files changed
.github/workflows/ci.yml
@@ -6,6 +6,7 @@ on:
6
- main
7
8
permissions:
9
+ contents: read
10
pull-requests: write
11
12
jobs:
.github/workflows/lint-markdown.yml
@@ -33,4 +33,6 @@ jobs:
33
34
- name: Lint markdown
35
if: steps.changed-files.outputs.any_changed == 'true'
36
- run: npx markdownlint-cli@0.43.0 ${{ steps.changed-files.outputs.all_changed_files }} --ignore node_modules
+ run: npx markdownlint-cli@0.43.0 $CHANGED_FILES --ignore node_modules
37
+ env:
38
+ CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
0 commit comments