ci: remove pull request draft flag (#78)

This commit is contained in:
Daniëlle Huisman 2025-05-17 00:18:02 +02:00 committed by GitHub
parent 284126b725
commit 78a260410d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -132,7 +132,6 @@ pub async fn github_create_pull_request(
.pulls(GITHUB_OWNER, GITHUB_REPO)
.create(title, branch_name, "main")
.body(body)
.draft(true)
.send()
.await?;