ISPN-16707 Sets EXPOSE_SERVICE_HOST env variable #127
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: 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/[email protected] | |
with: | |
target-branch: 2.3.x | |
pull-request: ${{ github.event.pull_request.url }} | |
auth: ${{ secrets.GITHUB_TOKEN }} | |
no-squash: true | |
- if: contains(github.event.pull_request.labels.*.name, 'stable') | |
name: Stable Backport | |
uses: kiegroup/[email protected] | |
with: | |
target-branch: stable | |
pull-request: ${{ github.event.pull_request.url }} | |
auth: ${{ secrets.GITHUB_TOKEN }} | |
no-squash: true |