diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02635aa6b2..2cc2f9426f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,7 @@ on: - opened - synchronize - reopened + - labeled branches: - main push: diff --git a/crates/forge_ci/src/workflows/ci.rs b/crates/forge_ci/src/workflows/ci.rs index 6b102a29eb..672625da4f 100644 --- a/crates/forge_ci/src/workflows/ci.rs +++ b/crates/forge_ci/src/workflows/ci.rs @@ -35,6 +35,7 @@ pub fn generate_ci_workflow() { .add_type(PullRequestType::Opened) .add_type(PullRequestType::Synchronize) .add_type(PullRequestType::Reopened) + .add_type(PullRequestType::Labeled) .add_branch("main"), ); let build_release_pr_job =