diff options
author | Christopher Baines <mail@cbaines.net> | 2023-02-17 20:55:36 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-02-17 20:55:36 +0000 |
commit | 02ff8b0beca34f340ba071e718f42c464bbdce4d (patch) | |
tree | 359bcf44f35ede16502768ec5e861f3fef541ca8 | |
parent | a584f859ddad25126b69478778334fd141b79fca (diff) | |
download | qa-frontpage-02ff8b0beca34f340ba071e718f42c464bbdce4d.tar qa-frontpage-02ff8b0beca34f340ba071e718f42c464bbdce4d.tar.gz |
Don't look at the version- branches
As these don't represent changes to check.
-rw-r--r-- | guix-qa-frontpage/server.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/guix-qa-frontpage/server.scm b/guix-qa-frontpage/server.scm index e15bd90..2e25f69 100644 --- a/guix-qa-frontpage/server.scm +++ b/guix-qa-frontpage/server.scm @@ -571,8 +571,10 @@ port. Also, the port used can be changed by passing the --port option.\n" (lambda () (remove (lambda (branch) - (string=? (assoc-ref branch "name") - "master")) + (or (string=? (assoc-ref branch "name") + "master") + (string-prefix? "version-" + (assoc-ref branch "name")))) (list-branches (list-branches-url 2)))) #:ttl 0))) |