From 533422e455f9b90967a729b1a10cea548695b9d3 Mon Sep 17 00:00:00 2001 From: Grant Likely Date: Wed, 11 Mar 2026 12:40:14 +0000 Subject: [PATCH 1/6] Update FAQ with CoreCollective joining information Added FAQs about joining CoreCollective working groups and their archives. --- src/content/faq/faq.yaml | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/src/content/faq/faq.yaml b/src/content/faq/faq.yaml index abd8915..c4f30dd 100644 --- a/src/content/faq/faq.yaml +++ b/src/content/faq/faq.yaml @@ -1,8 +1,31 @@ -- question: "Is there a clear role and set of responsibilities for Linaro?" +- question: "How do I join a CoreCollective working group?" answer: > - Linaro is an active Member of CoreCollective and provides governance, hosting, and other services. + Working groups are coordinated via Google Groups mailing lists. + The Google Group can be joined by visiting the group's page, or by + emailing [group name]+subscribe@corecollective.dev. + At a future date each Working Group will have a team page which + includes the group calendar and a place to store files. + Until then, all WG information will be shared via the Google Group. -- question: "What is the process for requesting the creation of a new CoreCollective Working Group?" +- question: "What CoreCollective groups are available to join?" + answer: > + The Working Groups page lists all the + active working groups. + Click on the group title to get to the Google Group page where you can + request to join and see the archives + +- question: "Can I join via email instead of the Google Groups page?" + answer: > + Yes, send an empty email to [group-name]+subscribe@corecollective.dev + +- question: "Are working group archives public?" + answer: > + Yes, working groups keep public archives of the mailing list traffic. + You don't need to be a member of a group to read the archive. + You can see the mailing list archive by clicking on the group name + on the Working Groups page. + +- question: "How do I propose a new CoreCollective Working Group?" answer: >

CoreCollective is always open to the proposal of new Working Groups. A new WG must be approved by the TAC Chair / TAC.

Considerations regarding requesting the launch of new WGs:

From 21bc924c1c007c72c26eff497ca12ae0a812c2e5 Mon Sep 17 00:00:00 2001 From: Grant Likely Date: Wed, 11 Mar 2026 12:09:51 +0000 Subject: [PATCH 2/6] Add working groups google group links to the index Makes the title of each working group a link to the Google Group so that the lists can be found and subscribed to. --- src/pages/working-groups/index.astro | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/pages/working-groups/index.astro b/src/pages/working-groups/index.astro index 3e349f1..f8d8575 100644 --- a/src/pages/working-groups/index.astro +++ b/src/pages/working-groups/index.astro @@ -17,41 +17,55 @@ const data = [ icon: iconGear, description: 'Focused on the Linux Kernel, Toolchains, and Kernel Quality Testing', + googlegroupname: 'linux-fundamentals', }, { title: 'Confidential Compute', icon: iconConfidential, description: 'Provision of a comprehensive set of software emulated hardware enabling execution of Confidential Compute on Arm', + googlegroupname: 'confidential-compute', }, { title: 'Windows on Arm', icon: iconWindows, description: 'Targeting application layer support for Windows. From tooling to enablement and optimization of libraries on the Windows platform', + googlegroupname: 'windows-on-arm', }, { title: 'Android', icon: iconWindows, description: 'Arm architecture feature adoption. Platform standardization & enablement', + googlegroupname: 'android', }, { title: 'Edge Compute', icon: iconEdge, description: 'Standards and Firmware for Arm edge platforms', + googlegroupname: 'edge-compute', }, { title: 'Virtualization', icon: iconData, description: 'Enable collaboration on evolving Arm-architecture virtualization technologies for secure firmware, hypervisor, kernel and AI workloads', + googlegroupname: 'virtualization', }, { title: 'Data Center', icon: iconLink, description: 'Focusing on technologies for cloud, on-prem and hybrid datacenter workloads as well as HPC.', + googlegroupname: 'datacenter', + }, + { + title: 'Technical Advisory Committee', + icon: iconLink, + description: + 'Guidance committee for all CoreCollective activities', + googlegroupname: 'tac', }, { title: 'And more', description: '' }, ]; @@ -92,7 +106,9 @@ const data = [

- {item.title} + + {item.title} +

From 0d7ffeed89da49f35df70a7b21050c757acde790 Mon Sep 17 00:00:00 2001 From: Grant Likely Date: Wed, 11 Mar 2026 14:10:11 +0000 Subject: [PATCH 3/6] Update src/content/faq/faq.yaml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/content/faq/faq.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/faq/faq.yaml b/src/content/faq/faq.yaml index c4f30dd..01eca60 100644 --- a/src/content/faq/faq.yaml +++ b/src/content/faq/faq.yaml @@ -2,7 +2,7 @@ answer: > Working groups are coordinated via Google Groups mailing lists. The Google Group can be joined by visiting the group's page, or by - emailing [group name]+subscribe@corecollective.dev. + emailing [group-name]+subscribe@corecollective.dev. At a future date each Working Group will have a team page which includes the group calendar and a place to store files. Until then, all WG information will be shared via the Google Group. From a6497621372d516b4d590daf31195c3f2aa6622d Mon Sep 17 00:00:00 2001 From: Grant Likely Date: Wed, 11 Mar 2026 14:10:20 +0000 Subject: [PATCH 4/6] Update src/content/faq/faq.yaml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/content/faq/faq.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/faq/faq.yaml b/src/content/faq/faq.yaml index 01eca60..fd4ce27 100644 --- a/src/content/faq/faq.yaml +++ b/src/content/faq/faq.yaml @@ -12,7 +12,7 @@ The Working Groups page lists all the active working groups. Click on the group title to get to the Google Group page where you can - request to join and see the archives + request to join and see the archives. - question: "Can I join via email instead of the Google Groups page?" answer: > From a4369b73da4d9eda17bffcf00efd3b1925372372 Mon Sep 17 00:00:00 2001 From: Grant Likely Date: Wed, 11 Mar 2026 14:10:32 +0000 Subject: [PATCH 5/6] Update src/content/faq/faq.yaml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/content/faq/faq.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/faq/faq.yaml b/src/content/faq/faq.yaml index fd4ce27..247ddac 100644 --- a/src/content/faq/faq.yaml +++ b/src/content/faq/faq.yaml @@ -16,7 +16,7 @@ - question: "Can I join via email instead of the Google Groups page?" answer: > - Yes, send an empty email to [group-name]+subscribe@corecollective.dev + Yes, send an empty email to [group-name]+subscribe@corecollective.dev. - question: "Are working group archives public?" answer: > From 1f2eb9e35606eac8a48b874422f8e6e38dda252e Mon Sep 17 00:00:00 2001 From: Grant Likely Date: Wed, 11 Mar 2026 14:15:00 +0000 Subject: [PATCH 6/6] Update src/pages/working-groups/index.astro Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/pages/working-groups/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/working-groups/index.astro b/src/pages/working-groups/index.astro index f8d8575..0a859b0 100644 --- a/src/pages/working-groups/index.astro +++ b/src/pages/working-groups/index.astro @@ -106,7 +106,7 @@ const data = [