1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-08-17 02:40:32 +03:00
This commit is contained in:
DaniPopes 2024-06-24 20:37:10 +02:00
parent 0621f69ed5
commit 68b7e79e75
No known key found for this signature in database
GPG Key ID: 0F09640DDB7AC692

View File

@ -425,14 +425,16 @@ impl<'a> Changelog<'a> {
serde_json::to_value(self.config.remote.clone())?,
);
#[cfg(feature = "github")]
let (github_commits, github_pull_requests) = if self.config.remote.github.is_set() {
let (github_commits, github_pull_requests) = if self.config.remote.github.is_set()
{
self.get_github_metadata()
.expect("Could not get github metadata")
} else {
(vec![], vec![])
};
#[cfg(feature = "gitlab")]
let (gitlab_commits, gitlab_merge_request) = if self.config.remote.gitlab.is_set() {
let (gitlab_commits, gitlab_merge_request) = if self.config.remote.gitlab.is_set()
{
self.get_gitlab_metadata()
.expect("Could not get gitlab metadata")
} else {