Skip to content

create-cherrypick-pr #8

create-cherrypick-pr

create-cherrypick-pr #8

name: create-cherrypick-pr
on:
workflow_dispatch:
inputs:
sourceCommit:
description: 'Source commit to cherry-pick from'
required: true
type: string
targetBranch:
description: 'Target branch to create PR against'
required: true
type: string
charts:
description: 'Comma-separated list of charts to include'
required: true
type: string
jobs:
pick:
runs-on: ubuntu-24.04
steps:
- name: test
shell: bash
run: |
echo "Source commit: ${{ inputs.sourceCommit }}"
echo "Target branch: ${{ inputs.targetBranch }}"
echo "Charts: ${{ inputs.charts }}"