Skip to content

2023-06-30_00-16-13_master-next_python3-boto3 #1244

2023-06-30_00-16-13_master-next_python3-boto3

2023-06-30_00-16-13_master-next_python3-boto3 #1244

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, mickledore]
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 }}