New way of backporting to active branches using gh action #1
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: Backport to active branches | |
on: | |
pull_request_target: | |
types: [closed] | |
branches: | |
- main | |
permissions: | |
pull-requests: write | |
contents: read | |
jobs: | |
backport: | |
# Only run if the PR was merged (not just closed) and has one of the backport labels | |
if: | | |
github.event.pull_request.merged == true && | |
contains(toJSON(github.event.pull_request.labels.*.name), 'backport-active-') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: elastic/oblt-actions/github/backport-active@v1 |