aboutsummaryrefslogtreecommitdiff
path: root/guix-qa-frontpage/manage-patch-branches.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix-qa-frontpage/manage-patch-branches.scm')
-rw-r--r--guix-qa-frontpage/manage-patch-branches.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/guix-qa-frontpage/manage-patch-branches.scm b/guix-qa-frontpage/manage-patch-branches.scm
index 4142e7d..682b183 100644
--- a/guix-qa-frontpage/manage-patch-branches.scm
+++ b/guix-qa-frontpage/manage-patch-branches.scm
@@ -329,7 +329,13 @@
(memoize get-latest-processed-branch-revision))
(branches
(cons "master"
- (map car (list-non-master-branches)))))
+ (filter-map
+ (match-lambda
+ ((name . details)
+ (if (assoc-ref details "issue_number")
+ name
+ #f)))
+ (list-non-master-branches)))))
;; Several series can use the same base revision, so memoize looking up
;; the changes compared to master