Skip to content

2023-11-14_00-13-40_master-next_aws-lc #1760

2023-11-14_00-13-40_master-next_aws-lc

2023-11-14_00-13-40_master-next_aws-lc #1760

Workflow file for this run

name: auto-backport
on:
pull_request_target:
branches:
- master-next
types: ["closed"]
jobs:
cherry_pick:
strategy:
fail-fast: false
matrix:
branch: [kirkstone, dunfell, nanbield]
runs-on: ubuntu-22.04
name: Cherry pick into release branches
if: |
(github.event.pull_request.merged == true ) &&
(contains(github.event.pull_request.labels.*.name, 'version-upgrade') || contains(github.event.pull_request.labels.*.name, 'auto-backport'))
steps:
- name: checkout current
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cherry pick into ${{ matrix.branch }}-next
uses: carloscastrojumo/[email protected]
with:
branch: ${{ matrix.branch }}-next
labels: |
auto-created
backport
${{ matrix.branch }}
auto-integrate
token: ${{ secrets.BOT_CREDENTIAL }}