|
1 | 1 | <div class="full-width-bg component-slim"> |
2 | | - <div class="grid-wrapper working-groups-cards"> |
3 | | - <div class="width-12-12 width-12-12-m"> |
4 | | - <p class="mt-0 lead"> |
5 | | - Joining a working group is a great way to get involved and help shape the future of Quarkus. |
6 | | - If you are interested in joining a working group, please check its board and look at the <em>readme</em> (under <em>Project details</em>). |
7 | | - </p> |
| 2 | + <div class="grid-wrapper working-groups-cards"> |
| 3 | + <div class="width-12-12 width-12-12-m"> |
| 4 | + <p class="mt-0 lead"> |
| 5 | + <p> |
| 6 | + A <strong>working group</strong> is a small team of contributors collaborating on a specific topic or initiative within the Quarkus ecosystem. |
| 7 | + Each group drives progress in a focused area, such as new features, tools, or long-term improvements. |
| 8 | + </p> |
| 9 | + <p> |
| 10 | + Joining a working group is a great way to get involved and help shape the future of Quarkus. |
| 11 | + If you're interested in participating, check the group's board or contact its <em>point of contact</em>. |
| 12 | + </p> |
| 13 | + <p> |
| 14 | + You can also propose a new working group by opening a |
| 15 | + <a href="https://github.com/quarkusio/quarkus/discussions/categories/design-discussions">design discussion</a> |
| 16 | + using the |
| 17 | + <a href="https://github.com/quarkusio/quarkus/discussions/44967">working group proposal template</a>. |
| 18 | + </p> |
| 19 | + </p> |
| 20 | + </div> |
8 | 21 | </div> |
9 | 22 |
|
10 | | - |
| 23 | + <!-- We need a first section for the working groups that are on track, not completed and not LTS --> |
| 24 | + <h2>Active working groups</h2> |
| 25 | + <div class="grid-wrapper working-groups-cards"> |
11 | 26 | {% for item in site.data.wg.working-groups %} |
12 | | - {% unless item.completed %} |
| 27 | + {% unless item.completed or item.lts or item.status != 'on track' %} |
13 | 28 | <div class="card"> |
14 | | - <div class="card-header"> |
15 | | - <p class="card-title">{{ item.title }}</p> |
16 | | - </div> |
17 | | - <div class="card-body"> |
18 | | - <p class="card-text"><span class="key">Status:</span> <span class="status {{ item.status | | replace: ' ', '-'}}">{{ item.status }}</span></p> |
19 | | - <p class="card-text"><span class="key">Description:</span> <span class="short-description">{{ item.short-description }}</span></p> |
20 | | - <p class="card-text"><span class="key">Last Activity:</span> <span class="last-activity">{{ item.last-activity | date: '%B %d, %Y' }} </span></p> |
21 | | - {% if item.point-of-contact %} |
22 | | - <p class="card-text"><span class="key">Point of Contact:</span> <span class="point-of-contact">{{ item.point-of-contact }}</span></p> |
23 | | - {% endif %} |
24 | | - </div> |
25 | | - <div class="card-footer"> |
26 | | - <div class="icons"> |
27 | | - {% if item.proposal %} |
28 | | - <a href="{{ item.proposal }}" title="See the working group proposal"><i class="icon fa-regular fa-file-lines"></i></a> |
29 | | - {% endif %} |
30 | | - <a href="{{ item.board-url }}" title="View the working group board"><i class="icon fa-brands fa-square-github"></i></a> |
31 | | - {% if item.discussion %} |
32 | | - <a href="{{ item.discussion }}" title="Discuss about the working group"><i class="icon fa-solid fa-comments"></i></a> |
33 | | - {% else %} |
34 | | - <a href="https://quarkusio.zulipchat.com/#narrow/stream/187038-dev" title="Discuss about the working group"><i class="icon fa-solid fa-comments"></i></a> |
35 | | - {% endif %} |
| 29 | + <div class="card-header"> |
| 30 | + <p class="card-title">{{ item.title }}</p> |
| 31 | + </div> |
| 32 | + <div class="card-body"> |
| 33 | + <p class="card-text"><span class="key">Status:</span> <span |
| 34 | + class="status {{ item.status | | replace: ' ', '-'}}">{{ item.status }}</span></p> |
| 35 | + <p class="card-text"><span class="key">Description:</span> <span class="short-description">{{ item.short-description }}</span> |
| 36 | + </p> |
| 37 | + <p class="card-text"><span class="key">Last Activity:</span> <span class="last-activity">{{ item.last-activity | date: '%B %d, %Y' }} </span> |
| 38 | + </p> |
| 39 | + {% if item.point-of-contact %} |
| 40 | + <p class="card-text"><span class="key">Point of Contact:</span> <span class="point-of-contact">{{ item.point-of-contact }}</span> |
| 41 | + </p> |
| 42 | + {% endif %} |
| 43 | + </div> |
| 44 | + <div class="card-footer"> |
| 45 | + <div class="icons"> |
| 46 | + {% if item.proposal %} |
| 47 | + <a href="{{ item.proposal }}" title="See the working group proposal"><i |
| 48 | + class="icon fa-regular fa-file-lines"></i></a> |
| 49 | + {% endif %} |
| 50 | + <a href="{{ item.board-url }}" title="View the working group board"><i |
| 51 | + class="icon fa-brands fa-square-github"></i></a> |
| 52 | + {% if item.discussion %} |
| 53 | + <a href="{{ item.discussion }}" title="Discuss about the working group"><i |
| 54 | + class="icon fa-solid fa-comments"></i></a> |
| 55 | + {% else %} |
| 56 | + <a href="https://quarkusio.zulipchat.com/#narrow/stream/187038-dev" |
| 57 | + title="Discuss about the working group"><i class="icon fa-solid fa-comments"></i></a> |
| 58 | + {% endif %} |
| 59 | + </div> |
36 | 60 | </div> |
37 | | - </div> |
38 | 61 | </div> |
39 | 62 | {% endunless %} |
40 | | - {% endfor %} |
41 | | - </div> |
| 63 | + {% endfor %} |
| 64 | + </div> |
42 | 65 |
|
43 | | - <h2>Completed working groups</h2> |
44 | | - <p class="mt-0"> |
45 | | - These working groups have completed their work and are no longer active: |
46 | | - </p> |
47 | | - <div class="grid-wrapper working-groups-cards"> |
48 | | - {% for item in site.data.wg.working-groups %} |
49 | | - {% if item.completed %} |
50 | | - <div class="card card-completed"> |
51 | | - <div class="card-header"> |
52 | | - <p class="card-title">{{ item.title }}</p> |
53 | | - </div> |
54 | | - <div class="card-body"> |
55 | | - <p class="card-text"><span class="key">Description:</span> <span class="short-description">{{ item.short-description }}</span></p> |
56 | | - <p class="card-text"><span class="key">Completed on:</span> <span class="last-activity">{{ item.last-update-date | date: '%B %d, %Y' }} </span></p> |
57 | | - {% if item.deliverable %} |
58 | | - <p class="card-text"><span class="key">Deliverable:</span> <span class="deliverable">{{ item.deliverable }}</span></p> |
59 | | - {% endif %} |
60 | | - </div> |
61 | | - <div class="card-footer"> |
62 | | - <a href="{{ item.board-url }}" class="float-end"> View the {{ item.title }} Board <i class="fa-solid fa-chevron-right"></i></a> |
63 | | - </div> |
| 66 | + <!-- Staled and at risk working groups --> |
| 67 | + <h2>Staled or <em>at risk</em> working groups</h2> |
| 68 | + <p class="mt-0">These working groups either lack recent activity (i.e., have gone stale), are approaching a time-sensitive |
| 69 | + deadline, or are facing a technical blocker.</p> |
| 70 | + <div class="grid-wrapper working-groups-cards"> |
| 71 | + {% for item in site.data.wg.working-groups %} |
| 72 | + {% unless item.completed or item.lts or item.status == 'on track' %} |
| 73 | + <div class="card"> |
| 74 | + <div class="card-header"> |
| 75 | + <p class="card-title">{{ item.title }}</p> |
| 76 | + </div> |
| 77 | + <div class="card-body"> |
| 78 | + <p class="card-text"><span class="key">Status:</span> <span |
| 79 | + class="status {{ item.status | | replace: ' ', '-'}}">{{ item.status }}</span></p> |
| 80 | + <p class="card-text"><span class="key">Description:</span> <span class="short-description">{{ item.short-description }}</span> |
| 81 | + </p> |
| 82 | + <p class="card-text"><span class="key">Last Activity:</span> <span class="last-activity">{{ item.last-activity | date: '%B %d, %Y' }} </span> |
| 83 | + </p> |
| 84 | + {% if item.point-of-contact %} |
| 85 | + <p class="card-text"><span class="key">Point of Contact:</span> <span class="point-of-contact">{{ item.point-of-contact }}</span> |
| 86 | + </p> |
| 87 | + {% endif %} |
| 88 | + </div> |
| 89 | + <div class="card-footer"> |
| 90 | + <div class="icons"> |
| 91 | + {% if item.proposal %} |
| 92 | + <a href="{{ item.proposal }}" title="See the working group proposal"><i |
| 93 | + class="icon fa-regular fa-file-lines"></i></a> |
| 94 | + {% endif %} |
| 95 | + <a href="{{ item.board-url }}" title="View the working group board"><i |
| 96 | + class="icon fa-brands fa-square-github"></i></a> |
| 97 | + {% if item.discussion %} |
| 98 | + <a href="{{ item.discussion }}" title="Discuss about the working group"><i |
| 99 | + class="icon fa-solid fa-comments"></i></a> |
| 100 | + {% else %} |
| 101 | + <a href="https://quarkusio.zulipchat.com/#narrow/stream/187038-dev" |
| 102 | + title="Discuss about the working group"><i class="icon fa-solid fa-comments"></i></a> |
| 103 | + {% endif %} |
| 104 | + </div> |
| 105 | + </div> |
64 | 106 | </div> |
65 | | - {% endif %} |
| 107 | + {% endunless %} |
66 | 108 | {% endfor %} |
67 | 109 | </div> |
68 | 110 |
|
| 111 | + <!-- The next section is for LTS --> |
| 112 | + <h2>LTS versions</h2> |
| 113 | + <p class="mt-0">Quarkus LTS versions are managed as long-running working group to track releases and issues |
| 114 | + selection.</p> |
| 115 | + <div class="grid-wrapper working-groups-cards"> |
| 116 | + {% for item in site.data.wg.working-groups %} |
| 117 | + {% if item.lts %} |
| 118 | + {% unless item.completed %} |
| 119 | + <div class="card"> |
| 120 | + <div class="card-header"> |
| 121 | + <p class="card-title">{{ item.title }}</p> |
| 122 | + </div> |
| 123 | + <div class="card-body"> |
| 124 | + <p class="card-text"><span class="key">Status:</span> <span |
| 125 | + class="status {{ item.status | | replace: ' ', '-'}}">{{ item.status }}</span></p> |
| 126 | + <p class="card-text"><span class="key">Description:</span> <span class="short-description">{{ item.short-description }}</span> |
| 127 | + </p> |
| 128 | + <p class="card-text"><span class="key">Last Activity:</span> <span class="last-activity">{{ item.last-activity | date: '%B %d, %Y' }} </span> |
| 129 | + </p> |
| 130 | + {% if item.point-of-contact %} |
| 131 | + <p class="card-text"><span class="key">Point of Contact:</span> <span class="point-of-contact">{{ item.point-of-contact }}</span> |
| 132 | + </p> |
| 133 | + {% endif %} |
| 134 | + </div> |
| 135 | + <div class="card-footer"> |
| 136 | + <div class="icons"> |
| 137 | + {% if item.proposal %} |
| 138 | + <a href="{{ item.proposal }}" title="See the working group proposal"><i |
| 139 | + class="icon fa-regular fa-file-lines"></i></a> |
| 140 | + {% endif %} |
| 141 | + <a href="{{ item.board-url }}" title="View the working group board"><i |
| 142 | + class="icon fa-brands fa-square-github"></i></a> |
| 143 | + {% if item.discussion %} |
| 144 | + <a href="{{ item.discussion }}" title="Discuss about the working group"><i |
| 145 | + class="icon fa-solid fa-comments"></i></a> |
| 146 | + {% else %} |
| 147 | + <a href="https://quarkusio.zulipchat.com/#narrow/stream/187038-dev" |
| 148 | + title="Discuss about the working group"><i class="icon fa-solid fa-comments"></i></a> |
| 149 | + {% endif %} |
| 150 | + </div> |
| 151 | + </div> |
| 152 | + </div> |
| 153 | + {% endunless %} |
| 154 | + {% endif %} |
| 155 | + {% endfor %} |
| 156 | + </div> |
| 157 | + |
| 158 | + <h2>Completed working groups</h2> |
| 159 | + <p class="mt-0"> |
| 160 | + These working groups have completed their work and are no longer active: |
| 161 | + </p> |
| 162 | + <div class="grid-wrapper working-groups-cards"> |
| 163 | + {% for item in site.data.wg.working-groups %} |
| 164 | + {% if item.completed %} |
| 165 | + <div class="card card-completed"> |
| 166 | + <div class="card-header"> |
| 167 | + <p class="card-title">{{ item.title }}</p> |
| 168 | + </div> |
| 169 | + <div class="card-body"> |
| 170 | + <p class="card-text"><span class="key">Description:</span> <span class="short-description">{{ item.short-description }}</span> |
| 171 | + </p> |
| 172 | + <p class="card-text"><span class="key">Completed on:</span> <span class="last-activity">{{ item.last-update-date | date: '%B %d, %Y' }} </span> |
| 173 | + </p> |
| 174 | + {% if item.deliverable %} |
| 175 | + <p class="card-text"><span class="key">Deliverable:</span> <span class="deliverable">{{ item.deliverable }}</span> |
| 176 | + </p> |
| 177 | + {% endif %} |
| 178 | + </div> |
| 179 | + <div class="card-footer"> |
| 180 | + <a href="{{ item.board-url }}" class="float-end"> View the {{ item.title }} Board <i |
| 181 | + class="fa-solid fa-chevron-right"></i></a> |
| 182 | + </div> |
| 183 | + </div> |
| 184 | + {% endif %} |
| 185 | + {% endfor %} |
| 186 | + </div> |
| 187 | + |
| 188 | + |
69 | 189 | </div> |
70 | 190 |
|
0 commit comments