This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git


The following commit(s) were added to refs/heads/main by this push:
     new 758d0975 Trivial title and example changes
758d0975 is described below

commit 758d09757fd9022057011dcbf3fb8dcb91b3ddf5
Author: Dave Fisher <[email protected]>
AuthorDate: Sun Mar 15 12:39:02 2026 -0700

    Trivial title and example changes
---
 atr/models/sql.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/atr/models/sql.py b/atr/models/sql.py
index 02e3337a..7b24582f 100644
--- a/atr/models/sql.py
+++ b/atr/models/sql.py
@@ -526,12 +526,12 @@ class Committee(sqlmodel.SQLModel, table=True):
     committee_members: list[str] = sqlmodel.Field(
         default_factory=list,
         sa_column=sqlalchemy.Column(sqlalchemy.JSON, nullable=False),
-        **example(["sbp", "tn", "wave"]),
+        **example(["sbp", "arm", "wave"]),
     )
     committers: list[str] = sqlmodel.Field(
         default_factory=list,
         sa_column=sqlalchemy.Column(sqlalchemy.JSON, nullable=False),
-        **example(["sbp", "tn", "wave"]),
+        **example(["sbp", "arm", "wave"]),
     )
     release_managers: list[str] = sqlmodel.Field(
         default_factory=list, sa_column=sqlalchemy.Column(sqlalchemy.JSON, 
nullable=False), **example(["wave"])
@@ -547,7 +547,7 @@ class Committee(sqlmodel.SQLModel, table=True):
     def display_name(self) -> str:
         """Get the display name for the committee."""
         name = self.full_name or self.name.title()
-        return f"{name} (PPMC)" if self.is_podling else name
+        return f"{name} (Incubating)" if self.is_podling else name
 
 
 def see_also(arg: Any) -> None:


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to