We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a9f1db commit a6a6473Copy full SHA for a6a6473
.github/workflows/pr.yml
@@ -20,6 +20,9 @@ jobs:
20
git diff origin/${{ github.base_ref }} *.md translations/*/*.md \
21
| sed -n '/^+/p' | sed '/^+++/d' | sed 's/^+//' \
22
> ${{ runner.temp }}/diff.md
23
- - uses: DavidAnson/markdownlint-cli2-action@v17
+ - name: Output diff
24
+ run: cat ${{ runner.temp }}/diff.md
25
+ - name: Check diff with markdownlint
26
+ uses: DavidAnson/markdownlint-cli2-action@v17
27
with:
28
globs: "${{ runner.temp }}/diff.md"
0 commit comments