manager: Apply rustfmt
This commit is contained in:
parent
f04beb5dea
commit
d0c8389c3b
2 changed files with 8 additions and 2 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue