From cbc436476258c835af12972a8ba9aae2a778e0b7 Mon Sep 17 00:00:00 2001 From: Martin Schuppert Date: Mon, 8 Jun 2026 09:15:38 +0200 Subject: [PATCH] Delete Release Branch Sync workflow Starting with FR5 we no long rely on the specific release sync branch. Lets remove the job. Jira: OSPRH-25747 Signed-off-by: Martin Schuppert --- .github/workflows/release-branch-sync.yaml | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/release-branch-sync.yaml diff --git a/.github/workflows/release-branch-sync.yaml b/.github/workflows/release-branch-sync.yaml deleted file mode 100644 index 693faa4..0000000 --- a/.github/workflows/release-branch-sync.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Force Push Branch -on: - workflow_call: - inputs: - source_branch: - type: string - required: false - default: 18.0-fr4 - target_branch: - type: string - required: false - default: olive -jobs: - force-push: - runs-on: ubuntu-latest - if: github.repository_owner == 'openstack-k8s-operators' - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Git config - run: | - git config user.name "openstack-k8s-operators-ci" - git config user.email "openstack-k8s-operators-ci@github.com" - - name: Force Push Branch - run: | - git fetch origin ${{ inputs.source_branch }} - git checkout ${{ inputs.source_branch }} - git push --force origin ${{ inputs.source_branch }}:${{ inputs.target_branch }}