This is an automated email from the ASF dual-hosted git repository.
chia7712 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 237138e04b5 MINOR: fix for opt-in flag for Github build (#17031)
237138e04b5 is described below
commit 237138e04b5f9945ebabf893323e0f795565d1d8
Author: David Arthur <[email protected]>
AuthorDate: Thu Aug 29 11:38:40 2024 -0400
MINOR: fix for opt-in flag for Github build (#17031)
Reviewers: Chia-Ping Tsai <[email protected]>
---
.github/workflows/build.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 9f1ac526c7c..c7eba3a84ab 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -82,7 +82,7 @@ jobs:
fail-fast: false
matrix:
java: [ 17, 11 ]
- if: ${{ inputs.github-actions-opt-in }}
+ if: ${{ inputs.github-actions-opt-in == 'true' }}
name: JUnit tests Java ${{ matrix.java }}
steps:
- name: Checkout code