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 3a570c6 commit a3fee7cCopy full SHA for a3fee7c
.github/workflows/reusable-change-detection.yml
@@ -83,7 +83,10 @@ jobs:
83
# into the PR branch anyway.
84
#
85
# https://github.com/python/core-workflow/issues/373
86
- git diff --name-only "origin/$GITHUB_BASE_REF.." | grep -qvE '(\.rst$|^Doc|^Misc|^\.pre-commit-config\.yaml$|\.ruff\.toml$|\.md$|mypy\.ini$)' && echo "run-tests=true" >> "$GITHUB_OUTPUT" || true
+ git diff --name-only "origin/$GITHUB_BASE_REF.." | grep -qvE \
87
+ -e '(\.rst$|\.md$|^Doc|^Misc|^CODEOWNERS$)' \
88
+ -e '(^\.pre-commit-config\.yaml$|\.ruff\.toml$|mypy\.ini$)' \
89
+ && echo "run-tests=true" >> "$GITHUB_OUTPUT" || true
90
fi
91
92
# Check if we should run hypothesis tests
0 commit comments