We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c84922e + 2fe2532 commit 8dbedf3Copy full SHA for 8dbedf3
infra/make-index.rkt
@@ -139,7 +139,7 @@
139
(raise-user-error 'make-index "No recent nightly runs"))
140
141
(define-values (mainline-infos other-infos)
142
- (partition (λ (x) (set-member? '("master" "develop") (dict-ref (first x) 'branch)))
+ (partition (λ (x) (set-member? '("master" "develop" "main") (dict-ref (first x) 'branch)))
143
branch-infos))
144
145
(when (null? mainline-infos)
@@ -151,7 +151,7 @@
151
(group-by
152
(curryr dict-ref 'note)
153
(sort
154
- (filter (λ (x) (set-member? '("master" "develop") (dict-ref x 'branch))) folders)
+ (filter (λ (x) (set-member? '("master" "develop" "main") (dict-ref x 'branch))) folders)
155
> #:key (curryr dict-ref 'date-unix))))))))
156
157
(define crashes
0 commit comments