@@ -140,13 +140,13 @@ jobs:
140140 if : ${{ needs.filter-commit-changes.outputs.has-changes-requiring-build == 'true' }}
141141 uses : ./.github/workflows/testing.yml
142142 with :
143- coordinator_changed : ${{ needs.filter-commit-changes.outputs.coordinator }}
144- linea_sequencer_changed : ${{ needs.filter-commit-changes.outputs.linea-sequencer-plugin }}
145- postman_changed : ${{ needs.filter-commit-changes.outputs.postman }}
146- prover_changed : ${{ needs.filter-commit-changes.outputs.prover }}
147- smart_contracts_changed : ${{ needs.filter-commit-changes.outputs.smart-contracts }}
148- staterecovery_changed : ${{ needs.filter-commit-changes.outputs.staterecovery }}
149- transaction_exclusion_api_changed : ${{ needs.filter-commit-changes.outputs.transaction-exclusion-api }}
143+ coordinator_changed : ${{ needs.filter-commit-changes.outputs.coordinator || 'false' }}
144+ linea_sequencer_changed : ${{ needs.filter-commit-changes.outputs.linea-sequencer-plugin || 'false' }}
145+ postman_changed : ${{ needs.filter-commit-changes.outputs.postman || 'false' }}
146+ prover_changed : ${{ needs.filter-commit-changes.outputs.prover || 'false' }}
147+ smart_contracts_changed : ${{ needs.filter-commit-changes.outputs.smart-contracts || 'false' }}
148+ staterecovery_changed : ${{ needs.filter-commit-changes.outputs.staterecovery || 'false' }}
149+ transaction_exclusion_api_changed : ${{ needs.filter-commit-changes.outputs.transaction-exclusion-api || 'false' }}
150150 secrets : inherit
151151
152152 # Always complete successfully even if no tests run
@@ -160,4 +160,4 @@ jobs:
160160 echo "🎉 CI workflow completed"
161161 echo "Health check: ${{ needs.ci-health-check.result }}"
162162 echo "Testing needed: ${{ needs.filter-commit-changes.outputs.has-changes-requiring-build }}"
163- echo "Testing result: ${{ needs.testing.result || 'skipped' }}"
163+ echo "Testing result: ${{ needs.testing.result || 'skipped' }}"
0 commit comments