From: Patrick Donnelly Date: Thu, 28 Aug 2025 01:39:06 +0000 (-0400) Subject: .github/workflows: run redmine-upkeep for release branches X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2bf2a9719fb33b980cbfcbb0a15347e518757a7c;p=ceph.git .github/workflows: run redmine-upkeep for release branches This `if` was filtering out merges for release branches like squid. Signed-off-by: Patrick Donnelly --- diff --git a/.github/workflows/redmine-upkeep.yml b/.github/workflows/redmine-upkeep.yml index 9bb3bdfec23a..e7c55a54bf9b 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'