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.
1 parent 3cb7362 commit 866ee25Copy full SHA for 866ee25
.github/workflows/pr.yml
@@ -15,7 +15,10 @@ jobs:
15
steps:
16
- uses: actions/checkout@v4
17
- name: Write git diff to temp file
18
- run: git diff ${{ github.base_ref }} --unified=0 *.md translations/*/*.md > ${{ runner.temp }}/diff.md
+ run: |
19
+ git fetch origin ${{ github.base_ref }}
20
+ git diff ${{ github.base_ref }} --unified=0 *.md translations/*/*.md \
21
+ > ${{ runner.temp }}/diff.md
22
- uses: DavidAnson/markdownlint-cli2-action@v17
23
with:
24
globs: "${{ runner.temp }}/diff.md"
0 commit comments