manager: Apply rustfmt

This commit is contained in:
Rahix 2025-05-22 15:25:19 +02:00
parent f04beb5dea
commit d0c8389c3b
2 changed files with 8 additions and 2 deletions

View file

@ -34,7 +34,12 @@ async fn run() -> anyhow::Result<()> {
)
.context("Failed parsing GITHUB_SERVER_URL as a url")?;
let mut repo_auth_url = server_url.join(&format!("{}/{}", meta.issue.repository.owner, meta.issue.repository.name)).unwrap();
let mut repo_auth_url = server_url
.join(&format!(
"{}/{}",
meta.issue.repository.owner, meta.issue.repository.name
))
.unwrap();
repo_auth_url.set_username("forgejo-actions").unwrap();
repo_auth_url.set_password(Some(&token)).unwrap();