diff mbox series

[yocto-metrics,RESEND,2/2] patch-status: remove accepted status

Message ID 20240704141317.24385-2-alexandre.truong@smile.fr
State New
Headers show
Series [yocto-metrics,RESEND,1/2] patch-status: Add missing inactive-upstream status | expand

Commit Message

Alexandre TRUONG July 4, 2024, 2:13 p.m. UTC
From: Alexandre Truong <alexandre.truong@smile.fr>

Following the convention [0], Accepted status has been replaced
with Backport. So Accepted status is being removed.

[0]: https://docs.yoctoproject.org/migration-guides/migration-3.2.html#miscellaneous-changes
Signed-off-by: Alexandre Truong <alexandre.truong@smile.fr>
Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
---
 patch-status/index.html | 8 --------
 1 file changed, 8 deletions(-)
diff mbox series

Patch

diff --git a/patch-status/index.html b/patch-status/index.html
index c77db918..2ca0bee7 100644
--- a/patch-status/index.html
+++ b/patch-status/index.html
@@ -227,12 +227,6 @@  SPDX-License-Identifier: MIT
           Upstream status categories explained
         </summary>
         <dl>
-          <dt><strong>Accepted</strong>:</dt>
-          <dd>
-            <p>The patch has been accepted upstream, meaning it has been applied to the original source code repository from which it originated.</p>
-            <p><em>A high count of accepted patches indicates successful contributions and integration of changes into the upstream project.</em></p>
-          </dd>
-
           <dt><strong>Backport</strong>:</dt>
           <dd>
             <p>The patch has been backported from a newer version of the software or a different branch to an older version or a specific branch.</p>
@@ -531,7 +525,6 @@  SPDX-License-Identifier: MIT
                     pending: status.pending || 0,
                     backport: status.backport || 0,
                     inappropriate: status.inappropriate || 0,
-                    accepted: status.accepted || 0,
                     submitted: status.submitted || 0,
                     denied: status.denied || 0,
                     inactive_upstream: status['inactive-upstream'] || 0
@@ -633,7 +626,6 @@  SPDX-License-Identifier: MIT
           { "value": data.pending || 0, "name": "Pending" },
           { "value": data.backport || 0, "name": "Backport" },
           { "value": data.inappropriate || 0, "name": "Inappropriate" },
-          { "value": data.accepted || 0, "name": "Accepted" },
           { "value": data.submitted || 0, "name": "Submitted" },
           { "value": data.denied || 0, "name": "Denied" },
           { "value": data['inactive-upstream'] || 0, "name": "Inactive-Upstream" }