Skip to content

Commit 88a5b0a

Browse files
committed
Add outputs to compute-changes job
1 parent 2623d60 commit 88a5b0a

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/reusable-context.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ on: # yamllint disable-line rule:truthy
2121
description: Whether to run the Android tests
2222
value: ${{ jobs.compute-changes.outputs.run-android }} # bool
2323
run-ci-fuzz:
24-
description: Whether to run the CIFuzz job
24+
description: Whether to run the CIFuzz job for 'cpython' fuzzer
25+
value: ${{ jobs.compute-changes.outputs.run-ci-fuzz }} # bool
26+
run-ci-fuzz-libraries:
27+
description: Whether to run the CIFuzz job for 'python3-libraries' fuzzer
2528
value: ${{ jobs.compute-changes.outputs.run-ci-fuzz }} # bool
2629
run-docs:
2730
description: Whether to build the docs
@@ -56,6 +59,7 @@ jobs:
5659
outputs:
5760
run-android: ${{ steps.changes.outputs.run-android }}
5861
run-ci-fuzz: ${{ steps.changes.outputs.run-ci-fuzz }}
62+
run-ci-fuzz-libraries: ${{ steps.changes.outputs.run-ci-fuzz-libraries }}
5963
run-docs: ${{ steps.changes.outputs.run-docs }}
6064
run-ios: ${{ steps.changes.outputs.run-ios }}
6165
run-macos: ${{ steps.changes.outputs.run-macos }}

0 commit comments

Comments
 (0)