From e18018e60d3370decf0c911a7e87156a8a909f4e Mon Sep 17 00:00:00 2001 From: weiqingy Date: Mon, 27 Jul 2026 22:54:15 -0700 Subject: [PATCH 1/2] [hotfix] Ignore the local directories check-license.sh creates tools/check-license.sh creates two directories in the repository root before it runs: lib/ for the Apache RAT jar it downloads, and build/ for the scan results it writes. Neither was ignored, so running the license check left them as untracked entries in git status for every contributor. Both patterns are anchored to the root so nested directories of the same name keep matching their own existing rules. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 6b898bb3e..8dec43847 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,8 @@ python/.DS_Store # Build target/ +/build/ +/lib/ **/dependency-reduced-pom.xml tools/releasing/release/ __pycache__ From 23bfd97bb326e9580da7ed64b45c08926407fd8a Mon Sep 17 00:00:00 2001 From: weiqingy Date: Mon, 27 Jul 2026 23:29:26 -0700 Subject: [PATCH 2/2] [hotfix] Re-trigger CI