extension_ci: Auto-assign version bumps to GitHub actor (#44929)

Release Notes:

- N/A
This commit is contained in:
Finn Evers
2025-12-15 23:59:04 +01:00
committed by GitHub
parent 4096bc55be
commit b52f907a8e
3 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
use gh_workflow::*;
use gh_workflow::{ctx::Context, *};
use indoc::indoc;
use crate::tasks::workflows::{
@@ -287,7 +287,8 @@ fn create_pull_request(new_version: StepOutput, generated_token: StepOutput) ->
.add("base", "main")
.add("delete-branch", true)
.add("token", generated_token.to_string())
.add("sign-commits", true),
.add("sign-commits", true)
.add("assignees", Context::github().actor().to_string()),
)
}