summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-10-10 09:34:48 (GMT)
committerGitHub <noreply@github.com>2023-10-10 09:34:48 (GMT)
commit46462ff929879c72c20b567af7ae3558b4918a50 (patch)
tree0c564b0d348e7507d5c3ab7a88d7fc0678a10da8 /.github
parent08ec4a1dbf66383303de9ce5cb55b2b437ef92c0 (diff)
downloadcpython-46462ff929879c72c20b567af7ae3558b4918a50.zip
cpython-46462ff929879c72c20b567af7ae3558b4918a50.tar.gz
cpython-46462ff929879c72c20b567af7ae3558b4918a50.tar.bz2
gh-107652: Fix CIFuzz typo (#110602)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 848d13f..81e85e6 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -83,7 +83,7 @@ jobs:
# merged into the main branch; compatibility with older branches may
# be broken.
FUZZ_RELEVANT_FILES='(\.c$|\.h$|\.cpp$|^configure$|^\.github/workflows/build\.yml$|^Modules/_xxtestfuzz)'
- if [ "$GITHUB_BASE_REF" = "main" ] && [ "$(git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE $FUZZ_RELEVANT_FILES; echo $?)" ]; then
+ if [ "$GITHUB_BASE_REF" = "main" ] && [ "$(git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE $FUZZ_RELEVANT_FILES; echo $?)" -eq 0 ]; then
# The tests are pretty slow so they are executed only for PRs
# changing relevant files.
echo "Run CIFuzz tests"