We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b08d92e commit f5425a5Copy full SHA for f5425a5
.github/workflows/pr-sglang.yml
@@ -102,7 +102,7 @@ jobs:
102
103
set-test-environment:
104
needs: [check-changes, build-sglang-image]
105
- if: (needs.check-changes.result == 'success' && needs.build-sglang-image.result == 'skipped') || needs.build-sglang-image.result == 'success'
+ if: needs.build-sglang-image.result == 'success' || ( needs.build-sglang-image.result == 'skipped' && needs.check-changes.outputs.test-change == 'true' )
106
runs-on: ubuntu-latest
107
outputs:
108
aws-account-id: ${{ steps.set-env.outputs.AWS_ACCOUNT_ID }}
.github/workflows/test-sglang.yml
0 commit comments