Skip to content
Merged
Prev Previous commit
Next Next commit
Change sentinel value, add explanation
  • Loading branch information
sethmlarson committed Jan 14, 2026
commit 4c8ddd4e738b2940063e11eaa313e2cbe18f4d98
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -661,16 +661,19 @@ jobs:
- cpython3
- python3-libraries
exclude:
# Note that the 'no-exclude' sentinel below is to prevent
# an empty string value from excluding all jobs and causing
# GHA to create a 'default' matrix entry with all empty values.
- oss-fuzz-project-name: >-
${{
needs.build-context.outputs.run-ci-fuzz == 'true'
&& 'dummy sentinel 🤪'
&& 'no-exclude'
|| 'cpython3'
}}
- oss-fuzz-project-name: >-
${{
needs.build-context.outputs.run-ci-fuzz-stdlib == 'true'
&& 'dummy sentinel 🤪'
&& 'no-exclude'
|| 'python3-libraries'
}}
uses: ./.github/workflows/reusable-cifuzz.yml
Expand Down
Loading