diff options
author | Christopher Baines <mail@cbaines.net> | 2023-10-22 11:44:10 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-10-22 11:44:10 +0100 |
commit | 4b0b107b7a226909b75b4e2f3735fb1f2bb12bf1 (patch) | |
tree | f9f93eee67a563267d4016b5e2bb339a27da65c7 /guix-qa-frontpage | |
parent | 9d011d1bb8aa870228a9a618d65a2cea3ff5e8e4 (diff) | |
download | qa-frontpage-4b0b107b7a226909b75b4e2f3735fb1f2bb12bf1.tar qa-frontpage-4b0b107b7a226909b75b4e2f3735fb1f2bb12bf1.tar.gz |
Fix checking for changes against master
Diffstat (limited to 'guix-qa-frontpage')
-rw-r--r-- | guix-qa-frontpage/manage-patch-branches.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guix-qa-frontpage/manage-patch-branches.scm b/guix-qa-frontpage/manage-patch-branches.scm index 886b429..693ff65 100644 --- a/guix-qa-frontpage/manage-patch-branches.scm +++ b/guix-qa-frontpage/manage-patch-branches.scm @@ -413,9 +413,6 @@ (if (string=? "master" (patchwork-series->branch (assq-ref all-patchwork-series issue-number))) - ;; Don't do the following checks on changes for - ;; non-master branches. - #f (let ((base-commit (assq-ref (get-issue-branch-base-and-target-refs issue-number) @@ -457,7 +454,10 @@ latest-master-revision) #t) #f))) - #:unwind? #t)))) + #:unwind? #t)) + ;; Don't do the following checks on changes for + ;; non-master branches. + #f)) (with-bare-git-repository (lambda () |