This is an automated email from the ASF dual-hosted git repository.
liurenjie1024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
The following commit(s) were added to refs/heads/main by this push:
new de6ffd202 infra: license header check ignore target/ dir (#1954)
de6ffd202 is described below
commit de6ffd202f77b2c53fe298f92d4d33f1482cf8a8
Author: Kevin Liu <[email protected]>
AuthorDate: Mon Dec 22 17:25:55 2025 -0800
infra: license header check ignore target/ dir (#1954)
## Which issue does this PR close?
- Closes #.
## What changes are included in this PR?
Following the [release
verification](https://rust.iceberg.apache.org/release.html#how-to-verify-a-release)
step by step. The target/ dir gets picked up by license header check.
This PR adds the target/ dir to the ignore list.
## Are these changes tested?
---
.licenserc.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.licenserc.yaml b/.licenserc.yaml
index da87374c3..0bcb65f3b 100644
--- a/.licenserc.yaml
+++ b/.licenserc.yaml
@@ -31,6 +31,7 @@ header:
- "**/DEPENDENCIES.*.tsv"
# Release distributions
- "dist/*"
+ - "target"
- "Cargo.lock"
- "bindings/python/uv.lock"
- ".github/PULL_REQUEST_TEMPLATE.md"