create-cherrypick-pr #8
This file contains hidden or 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: 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 }}" |