Bump zulip/github-actions-zulip from e71e15b429b0e79cc7b63e4e3dad0146443fab6f to b62d5a0e48a4d984ea4fce5dd65ba691963d4db4 #228
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} |