This is an automated email from the ASF dual-hosted git repository.
yuqi4733 pushed a commit to branch branch-0.6
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-0.6 by this push:
new 4e1caf333 [#4439] fix: add **/*.out in list of exclusions (#4443)
4e1caf333 is described below
commit 4e1caf33302115d856f9f4e2a1953673572a37e9
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Aug 8 19:55:17 2024 +0800
[#4439] fix: add **/*.out in list of exclusions (#4443)
<!--
1. Title: [#<issue>] <type>(<scope>): <subject>
Examples:
- "[#123] feat(operator): support xxx"
- "[#233] fix: check null before access result in xxx"
- "[MINOR] refactor: fix typo in variable name"
- "[MINOR] docs: fix typo in README"
- "[#255] test: fix flaky test NameOfTheTest"
Reference: https://www.conventionalcommits.org/en/v1.0.0/
2. If the PR is unfinished, please mark this PR as draft.
-->
### What changes were proposed in this pull request?
Add `**/*.out` to the list of exclusions will skip the licence check on
the *.out file.
### Why are the changes needed?
Fix: #4439
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
No
Co-authored-by: Saker <[email protected]>
---
build.gradle.kts | 1 +
1 file changed, 1 insertion(+)
diff --git a/build.gradle.kts b/build.gradle.kts
index 1cd662d07..13023bcd8 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -466,6 +466,7 @@ tasks.rat {
"dev/docker/**/*.conf",
"dev/docker/kerberos-hive/kadm5.acl",
"**/*.log",
+ "**/*.out",
"**/testsets",
"**/licenses/*.txt",
"**/licenses/*.md",