From fd582515027f9e82dee877304bc7333f95554704 Mon Sep 17 00:00:00 2001 From: just-mitch <68168980+just-mitch@users.noreply.github.com> Date: Tue, 16 Jan 2024 09:28:26 -0500 Subject: [PATCH] chore: resume CCI runs on release-please branch (#4034) Allow running CCI on release-please branch again. This is not ideal, since it is wasted work, but presently there are required statuses from CCI on our github PRs, so when CCI doesn't run on release-please branch, it requires an admin for force merge. --- .circleci/config.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9f0eda0f614..75cf2b955ce 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1059,9 +1059,15 @@ defaults: &defaults filters: tags: only: /^aztec-packages-v.*/ - branches: - ignore: - - /^release-please--.*/ + # We would like to ignore release-please branches, + # but doing so breaks github status checks: + # the PR spins as it waits for the status check to complete, + # which never happens because the branch is ignored. + # Long term solution would require disabling the status checks on `master` + # when the *source branch* on the PR release-please. + # branches: + # ignore: + # - /^release-please--.*/ context: - build - slack