diff options
Diffstat (limited to 'guix-qa-frontpage')
-rw-r--r-- | guix-qa-frontpage/manage-patch-branches.scm | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/guix-qa-frontpage/manage-patch-branches.scm b/guix-qa-frontpage/manage-patch-branches.scm index b92e8a8..83b9579 100644 --- a/guix-qa-frontpage/manage-patch-branches.scm +++ b/guix-qa-frontpage/manage-patch-branches.scm @@ -329,13 +329,10 @@ (memoize get-latest-processed-branch-revision)) (branches (cons "master" - (filter-map - (match-lambda - ((name . details) - (if (assoc-ref details "issue_number") - name - #f))) - (list-non-master-branches))))) + (map (lambda (branch) + (assoc-ref branch "name")) + (list-branches + (list-branches-url %data-service-guix-repository-id)))))) ;; Several series can use the same base revision, so memoize looking up ;; the changes compared to master |