From 519b0f76d6100d6e818bdda7646a12f9561a7930 Mon Sep 17 00:00:00 2001 From: Adrienne Stilp Date: Fri, 8 Mar 2024 11:06:38 -0800 Subject: [PATCH] Do not autoclose combine-prs PRs after merging Dependabot should handle these updates. --- .github/workflows/combine-prs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/combine-prs.yml b/.github/workflows/combine-prs.yml index b170e5d6..c2f75a73 100644 --- a/.github/workflows/combine-prs.yml +++ b/.github/workflows/combine-prs.yml @@ -23,3 +23,4 @@ jobs: labels: combined-pr # Optional: add a label to the combined PR ci_required: true # require all checks to pass before combining select_label: dependencies # Optional: only combine PRs with this label + autoclose: false # do not close the source PRs - dependabot should handle it.