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-rust.git
The following commit(s) were added to refs/heads/main by this push:
new 07d33074 build: align ASF configuration with Paimon (#930)
07d33074 is described below
commit 07d33074aca318eb250337036e40a8da2c80a6ce
Author: Jingsong Lee <[email protected]>
AuthorDate: Thu Sep 24 10:39:37 2026 +0800
build: align ASF configuration with Paimon (#930)
---
.asf.yaml | 4 ++--
scripts/validate_asf_yaml.py | 1 +
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.asf.yaml b/.asf.yaml
index e2aba478..bfe66031 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -15,8 +15,6 @@
# limitations under the License.
#
-# See:
https://cwiki.apache.org/confluence/display/INFRA/git+-+.asf.yaml+features
-
github:
description: "Apache Paimon Rust The rust implementation of Apache Paimon."
homepage: https://paimon.apache.org/docs/rust/
@@ -30,6 +28,7 @@ github:
- table-store
enabled_merge_buttons:
squash: true
+ squash_commit_message: PR_TITLE
merge: false
rebase: true
features:
@@ -58,3 +57,4 @@ notifications:
commits: [email protected]
issues: [email protected]
pullrequests: [email protected]
+ jira_options: link label
diff --git a/scripts/validate_asf_yaml.py b/scripts/validate_asf_yaml.py
index 2a80e84f..44dfd0ad 100644
--- a/scripts/validate_asf_yaml.py
+++ b/scripts/validate_asf_yaml.py
@@ -66,6 +66,7 @@ VALID_FEATURES_KEYS = {
# Known keys under 'github.enabled_merge_buttons'
VALID_MERGE_BUTTON_KEYS = {
"squash",
+ "squash_commit_message",
"merge",
"rebase",
}