gopidesupavan commented on code in PR #44326:
URL: https://github.com/apache/airflow/pull/44326#discussion_r1855528838


##########
.github/workflows/ci.yml:
##########
@@ -505,6 +500,13 @@ jobs:
       upgrade-to-newer-dependencies: ${{ 
needs.build-info.outputs.upgrade-to-newer-dependencies }}
       include-success-outputs: ${{ 
needs.build-info.outputs.include-success-outputs }}
       debug-resources: ${{ needs.build-info.outputs.debug-resources }}
+      is-special-tests-require: ${{

Review Comment:
   Not sure if there is better way to handle this. openapi tests executes when 
`needs-api-codegen` is true and other special tests executes based on these 
conditions.
   ```
   needs.build-info.outputs.run-tests == 'true' &&
      (needs.build-info.outputs.canary-run == 'true' ||
           needs.build-info.outputs.upgrade-to-newer-dependencies != 'false' ||
           needs.build-info.outputs.full-tests-needed == 'true')
   ```
   
   To support both in special tests workflow, am sending the evaluated 
condition value. so inside special tests workflow we can do if check.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to