We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a70ecb commit b25fd53Copy full SHA for b25fd53
.github/workflows/lint-markdown.yml
@@ -19,7 +19,11 @@ jobs:
19
- name: Modified files
20
id: file-changes
21
run: |
22
- echo "changed-files=$(git diff --name-only -r origin/${GITHUB_BASE_REF} origin/${GITHUB_HEAD_REF} | grep '\.md' | tr '\n' ' ')" >> $GITHUB_OUTPUT
+ echo \
23
+ "changed-files=$(git diff --name-only -r origin/${GITHUB_BASE_REF} origin/${GITHUB_HEAD_REF} \
24
+ | grep '\.md' \
25
+ | tr '\n' ' ')" \
26
+ >> $GITHUB_OUTPUT
27
28
- name: Check GitHub event type to determine reporter type
29
0 commit comments