diff mbox series

[yocto-metrics-meta-oe,3/3] patch-status: remove accepted, add inactive-upstream

Message ID 20260111190703.13425-3-peter.marko@siemens.com
State New
Headers show
Series [yocto-metrics-meta-oe,1/3] patch-status: drop styhead | expand

Commit Message

Peter Marko Jan. 11, 2026, 7:07 p.m. UTC
From: Peter Marko <peter.marko@siemens.com>

This corresponds to oe-core changes:
* https://git.yoctoproject.org/yocto-metrics/commit/?id=416a3a4af0129b53a62bd550d170c53d1b187bb1
* https://git.yoctoproject.org/yocto-metrics/commit/?id=312e8f1203b9882dc463c385a337c1b2f40c83de

Value of 'accepted' is 0.

Signed-off-by: Peter Marko <peter.marko@siemens.com>
---
 patch-status/index.html | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/patch-status/index.html b/patch-status/index.html
index 2119d9ec..ddcaf655 100644
--- a/patch-status/index.html
+++ b/patch-status/index.html
@@ -198,7 +198,8 @@  SPDX-License-Identifier: MIT
       denied: 'Denied',
       total: 'Total',
       sob: 'Malformed Signed-off-by',
-      upstream_status: 'Malformed Upstream-Status'
+      upstream_status: 'Malformed Upstream-Status',
+      inactive_upstream: 'Inactive-Upstream'
     };
     const branches = ['master', 'whinlatter', 'walnascar', 'styhead', 'scarthgap', 'nanbield', 'mickledore', 'langdale', 'kirkstone', 'honister', 'hardknott', 'gatesgarth', 'dunfell']
 
@@ -285,9 +286,9 @@  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
+                denied: status.denied || 0,
+                inactive_upstream: status['inactive-upstream'] || 0
               }
             })
 
@@ -385,9 +386,9 @@  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.denied || 0, "name": "Denied" },
+          { "value": data['inactive-upstream'] || 0, "name": "Inactive-Upstream" }
         ]
         generatePieChart(formatted)
       });