We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eced1d9 commit ace7eccCopy full SHA for ace7ecc
2 files changed
.github/workflows/branch-markdown.yml
@@ -29,8 +29,8 @@ jobs:
29
# Fetch the base branch
30
git fetch origin ${{ github.base_ref }}
31
32
- # Get changed .md and .mdx files
33
- CHANGED_FILES=$(git diff --name-only --diff-filter=ACMRT origin/${{ github.base_ref }}...HEAD | grep -E '\.(md|mdx)$' || true)
+ # Get changed .md and .mdx files, excluding credits.md
+ CHANGED_FILES=$(git diff --name-only --diff-filter=ACMRT origin/${{ github.base_ref }}...HEAD | grep -E '\.(md|mdx)$' | grep -v 'docs/credits.md' || true)
34
35
# Store the files
36
echo "files<<EOF" >> $GITHUB_OUTPUT
.markdownlintignore
0 commit comments