Skip to content

Commit 11cb129

Browse files
authored
Broaden some type signatures
1 parent 7098ce6 commit 11cb129

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utilities/new_versions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ end
304304
function force_ci_trigger(
305305
api::GitLab.GitLabAPI,
306306
ci_cfg::CIService,
307-
repo::GitLab.Project,
307+
repo::Union{GitLab.Project, Nothing},
308308
pr_title::AbstractString,
309309
branch_name::AbstractString,
310310
pkey_filename::Union{AbstractString,Nothing};
@@ -317,7 +317,7 @@ end
317317
function force_ci_trigger(
318318
api::GitHub.GitHubAPI,
319319
ci_cfg::CIService,
320-
repo::GitHub.Repo,
320+
repo::Union{GitHub.Repo, Nothing},
321321
pr_title::AbstractString,
322322
branch_name::AbstractString,
323323
pkey_filename::Union{AbstractString,Nothing};

0 commit comments

Comments
 (0)