This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-full-text.git
The following commit(s) were added to refs/heads/main by this push:
new 5a7685d Add .asf.yaml and .gitignore
5a7685d is described below
commit 5a7685d706aea99b75729a1b5dda2d68da03f242
Author: JingsongLi <[email protected]>
AuthorDate: Sat Jul 4 21:49:48 2026 +0800
Add .asf.yaml and .gitignore
---
.asf.yaml | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.gitignore | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 105 insertions(+)
diff --git a/.asf.yaml b/.asf.yaml
new file mode 100644
index 0000000..37189c9
--- /dev/null
+++ b/.asf.yaml
@@ -0,0 +1,56 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# See:
https://cwiki.apache.org/confluence/display/INFRA/git+-+.asf.yaml+features
+
+github:
+ description: "Apache Paimon Full Text: Rust full text index for data lake
search."
+ homepage: https://paimon.apache.org/
+ labels:
+ - paimon
+ - rust
+ - full-text-search
+ - streaming-datalake
+ - big-data
+ enabled_merge_buttons:
+ squash: true
+ squash_commit_message: PR_TITLE_AND_DESC
+ merge: false
+ rebase: true
+ features:
+ issues: true
+ discussions: true
+ wiki: false
+ projects: false
+
+ rulesets:
+ - name: "Default Branch Protection"
+ type: branch
+ branches:
+ includes:
+ - "~DEFAULT_BRANCH"
+ - "release/*"
+ excludes: []
+ bypass_teams:
+ - root
+ restrict_deletion: true
+ restrict_force_push: true
+
+notifications:
+ commits: [email protected]
+ issues: [email protected]
+ pullrequests: [email protected]
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b3345e6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,49 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# Rust
+/target/
+
+# Java
+java/target/
+java/src/main/resources/native/
+*.class
+
+# C
+c/build/
+
+# C++
+cpp/build/
+
+# Python
+__pycache__/
+*.pyc
+*.egg-info/
+python/dist/
+python/build/
+python/target/
+.pytest_cache/
+
+# IDE
+.idea/
+*.iml
+.vscode/
+
+# OS
+.DS_Store
+Thumbs.db
+