@@ -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)
});