Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
On branch edburns/dd-2855288-add-smoke-test-to-build-and-test
modified:   .github/workflows/build-test.yml

More absolutely excellent copilot review feedback.

> java-sdk now has needs: smoke-test, but the called workflow’s only job is gated by if: github.ref == 'refs/heads/main' (.github/workflows/run-smoke-test.yml:17). On pull_request and merge_group runs, smoke-test will be skipped, which will cause java-sdk to be skipped as well (no tests run). Consider either removing the hard dependency, or adding an explicit job if: ${{ always() && needs.smoke-test.result != 'failure' }} (or similar) so java-sdk still runs when smoke-test is skipped.

Signed-off-by: Ed Burns <edburns@microsoft.com>
  • Loading branch information
edburns committed Mar 25, 2026
commit 0842fe0c3fb7445d1ff52d16ca9c5bbbcb963c4a
1 change: 1 addition & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
java-sdk:
name: "Java SDK Tests"
needs: smoke-test
Comment thread
edburns marked this conversation as resolved.
if: ${{ always() && needs.smoke-test.result != 'failure' }}

runs-on: ubuntu-latest
defaults:
Expand Down