This is an automated email from the ASF dual-hosted git repository.
sxnan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-agents.git
The following commit(s) were added to refs/heads/main by this push:
new 009b3598 [release] Add scripts for generating contributor list (#497)
009b3598 is described below
commit 009b3598542ad90be8d47b7b4d7134de7073fb57
Author: Xintong Song <[email protected]>
AuthorDate: Wed Jan 28 09:41:02 2026 +0800
[release] Add scripts for generating contributor list (#497)
---
tools/releasing/list_contributors.sh | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/tools/releasing/list_contributors.sh
b/tools/releasing/list_contributors.sh
new file mode 100755
index 00000000..80a8b23d
--- /dev/null
+++ b/tools/releasing/list_contributors.sh
@@ -0,0 +1,32 @@
+#!/usr/bin/env bash
+
+#
+# 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.
+#
+
+if [ "$#" -gt 2 ]; then
+ echo "Usage: $0 [<old_ref> [<new_ref>]]" >&2
+ exit 1
+fi
+
+log_range=()
+if [ "$#" -eq 1 ]; then
+ log_range=("${1}..HEAD")
+elif [ "$#" -eq 2 ]; then
+ log_range=("${1}..${2}")
+fi
+
+{ git log --pretty=format:'%an' "${log_range[@]}"; echo; git log
--pretty=format:%B "${log_range[@]}" | awk '/^[Cc]o-authored-by:/ {
sub(/[^:]+:/, ""); sub(/^ */, ""); sub(/ <[^>]+>$/, ""); print }'; } | sort -u
| awk 'NR==1{printf "%s", $0; next} {printf ", %s", $0} END{print ""}'