Skip to content

Do-Not-Merge:Test PR to debug the cherry-pick workflow #8

Do-Not-Merge:Test PR to debug the cherry-pick workflow

Do-Not-Merge:Test PR to debug the cherry-pick workflow #8

Workflow file for this run

name: Cherry pick PR to release-1.0 branch
on:
pull_request:
branches:
- main
types: ["closed", "labeled"]
permissions: write-all
jobs:
cherry_pick_release_1_0:
runs-on: ubuntu-latest
name: Cherry pick PR to release-1.0 branch
if: ${{ contains(github.event.pull_request.labels.*.name, 'cherry-pick-release-1.0') }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cherry pick into release-1.0 branch
uses: carloscastrojumo/[email protected]
with:
branch: release-1.0
labels: |
cherry-pick
reviewers: |
instructlab/ui-maintainers
title: '[cherry-pick] {old_title}'
body: 'Cherry picking #{old_pull_request_id} onto this branch'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}