diff --git a/src/deployconfig.jl b/src/deployconfig.jl index 5a34386bfc5..5722721cbdf 100644 --- a/src/deployconfig.jl +++ b/src/deployconfig.jl @@ -353,13 +353,13 @@ function post_github_status(type::S, deploydocs_repo::S, sha::S, subfolder=nothi push!(cmd.exec, "-H", "Authorization: token $(auth)") push!(cmd.exec, "-H", "User-Agent: Documenter.jl") push!(cmd.exec, "-H", "Content-Type: application/json") - json = Dict{String,Any}("context" => "continuous-integration/documenter", "state"=>type) + json = Dict{String,Any}("context" => "documenter/deploy", "state"=>type) if type == "pending" json["description"] = "Documentation build in progress" elseif type == "success" json["description"] = "Documentation build succeeded" if subfolder !== nothing - json["target_url"] = "https://$(owner).github.io/$(repo)/$(subfolder)" + json["target_url"] = "https://$(owner).github.io/$(repo)/$(subfolder)/" end elseif type == "error" json["description"] = "Documentation build errored"