[main] SRVLOGIC-390: update the prod templates to include the operator memory increase and adjust the SonataFlow-Builder.containerfile #84
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Backporting | |
on: | |
pull_request_target: | |
types: [closed, labeled] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
compute-targets: | |
if: ${{ github.event.pull_request.state == 'closed' && github.event.pull_request.merged }} | |
runs-on: ubuntu-latest | |
outputs: | |
target-branches: ${{ steps.set-targets.outputs.targets }} | |
env: | |
LABELS: ${{ toJSON(github.event.pull_request.labels) }} | |
steps: | |
- name: Set target branches | |
id: set-targets | |
uses: kiegroup/kie-ci/.ci/actions/parse-labels@main | |
with: | |
labels: ${LABELS} | |
backporting: | |
if: ${{ github.event.pull_request.state == 'closed' && github.event.pull_request.merged && needs.compute-targets.outputs.target-branches != '[]' }} | |
name: "[${{ matrix.target-branch }}] - Backporting" | |
runs-on: ubuntu-latest | |
needs: compute-targets | |
strategy: | |
matrix: | |
target-branch: ${{ fromJSON(needs.compute-targets.outputs.target-branches) }} | |
fail-fast: false | |
env: | |
REVIEWERS: ${{ toJSON(github.event.pull_request.requested_reviewers) }} | |
steps: | |
- name: Backporting | |
uses: kiegroup/kie-ci/.ci/actions/backporting@main | |
with: | |
target-branch: ${{ matrix.target-branch }} | |
additional-reviewers: ${REVIEWERS} |