Skip to content

[#2210] Update the Operator SDK to version 1.26.1 #222

[#2210] Update the Operator SDK to version 1.26.1

[#2210] Update the Operator SDK to version 1.26.1 #222

Workflow file for this run

name: Automated Backporting
on:
pull_request_target:
types:
- closed
branches:
- main
jobs:
create_backport:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- if: contains(github.event.pull_request.labels.*.name, '2.3.x')
name: 2.3.x Backport
uses: kiegroup/git-backporting@v4.8.5
with:
target-branch: 2.3.x
pull-request: ${{ github.event.pull_request.url }}
auth: ${{ secrets.INFINISPAN_RELEASE_TOKEN }}
no-squash: true
- if: contains(github.event.pull_request.labels.*.name, '2.4.x')
name: 2.4.x Backport
uses: kiegroup/git-backporting@v4.8.5
with:
target-branch: 2.4.x
pull-request: ${{ github.event.pull_request.url }}
auth: ${{ secrets.INFINISPAN_RELEASE_TOKEN }}
no-squash: true
- if: contains(github.event.pull_request.labels.*.name, 'stable')
name: Stable Backport
uses: kiegroup/git-backporting@v4.8.5
with:
target-branch: stable
pull-request: ${{ github.event.pull_request.url }}
auth: ${{ secrets.INFINISPAN_RELEASE_TOKEN }}
no-squash: true