Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
skip CI on CODEOWNERS update
  • Loading branch information
picnixz committed Jan 12, 2025
commit a3fee7c12d6c48b91499f2c1f908fb44ee207ae3
5 changes: 4 additions & 1 deletion .github/workflows/reusable-change-detection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ jobs:
# into the PR branch anyway.
#
# https://github.com/python/core-workflow/issues/373
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 \
-e '(\.rst$|\.md$|^Doc|^Misc|^CODEOWNERS$)' \
-e '(^\.pre-commit-config\.yaml$|\.ruff\.toml$|mypy\.ini$)' \
&& echo "run-tests=true" >> "$GITHUB_OUTPUT" || true
fi

# Check if we should run hypothesis tests
Expand Down
Loading