From 2bf2a9719fb33b980cbfcbb0a15347e518757a7c Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Wed, 27 Aug 2025 21:39:06 -0400 Subject: [PATCH] .github/workflows: run redmine-upkeep for release branches This `if` was filtering out merges for release branches like squid. Signed-off-by: Patrick Donnelly --- .github/workflows/redmine-upkeep.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/redmine-upkeep.yml b/.github/workflows/redmine-upkeep.yml index 9bb3bdfec23aa..e7c55a54bf9b8 100644 --- a/.github/workflows/redmine-upkeep.yml +++ b/.github/workflows/redmine-upkeep.yml @@ -37,8 +37,7 @@ concurrency: jobs: redmine-upkeep: runs-on: ubuntu-latest - # This condition ensures the job only runs in the main ceph/ceph repository and only on the specified branches. - if: github.repository == 'ceph/ceph' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature/redmine-upkeep') + if: github.repository == 'ceph/ceph' steps: - name: Checkout main branch for pull_request_target if: github.event_name == 'pull_request_target' -- 2.39.5