File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -364,14 +364,16 @@ impl<'a> Changelog<'a> {
364
364
serde_json:: to_value ( self . config . remote . clone ( ) ) ?,
365
365
) ;
366
366
#[ cfg( feature = "github" ) ]
367
- let ( github_commits, github_pull_requests) = if self . config . remote . github . is_set ( ) {
367
+ let ( github_commits, github_pull_requests) = if self . config . remote . github . is_set ( )
368
+ {
368
369
self . get_github_metadata ( )
369
370
. expect ( "Could not get github metadata" )
370
371
} else {
371
372
( vec ! [ ] , vec ! [ ] )
372
373
} ;
373
374
#[ cfg( feature = "gitlab" ) ]
374
- let ( gitlab_commits, gitlab_merge_request) = if self . config . remote . gitlab . is_set ( ) {
375
+ let ( gitlab_commits, gitlab_merge_request) = if self . config . remote . gitlab . is_set ( )
376
+ {
375
377
self . get_gitlab_metadata ( )
376
378
. expect ( "Could not get gitlab metadata" )
377
379
} else {
You can’t perform that action at this time.
0 commit comments