This is an automated email from the ASF dual-hosted git repository.

abhishekrb pushed a commit to branch include_under_
in repository https://gitbox.apache.org/repos/asf/druid.git

commit d75f9e4c9e203ae8aada7d71e4748bdb680935ee
Author: Abhishek Balaji Radhakrishnan <[email protected]>
AuthorDate: Wed Jun 18 10:19:28 2025 -0400

    Include _* and $* as java class names can start with those characters.
    
    Add these character regexes for completeness.
    This ensures all allowed starting characters for java classes are covered.
---
 .github/workflows/ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 70da61e9449..3b9edb61565 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -24,7 +24,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        pattern: [ "A*,G*,R*", "B*,O*,S*,X*,Y*,Z*", "C*,E*", "D*,J*,K*", 
"F*,H*,U*", "I*,N*,T*", "L*,Q*,W*", "M*,P*,V*"]
+        pattern: [ "A*,G*,R*", "B*,O*,S*,X*,Y*,Z*", "C*,E*", "D*,J*,K*", 
"F*,H*,U*", "I*,N*,T*", "L*,Q*,W*", "M*,P*,V*,_*,$*"]
     uses: ./.github/workflows/worker.yml
     with:
       script: .github/scripts/run-unit-tests.sh -Dtest='${{ matrix.pattern }}' 
-Dmaven.test.failure.ignore=true


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to