1# Generated from xtask::workflows::cherry_pick
2# Rebuild with `cargo xtask workflows`.
3name: cherry_pick
4on:
5 workflow_dispatch:
6 inputs:
7 commit:
8 description: commit
9 required: true
10 type: string
11 branch:
12 description: branch
13 required: true
14 type: string
15jobs:
16 run_cherry_pick:
17 runs-on: namespace-profile-2x4-ubuntu-2404
18 steps:
19 - name: steps::checkout_repo
20 uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
21 with:
22 clean: false
23 - name: cherry_pick::run_cherry_pick::cherry_pick
24 run: ./scripts/cherry-pick ${{ inputs.branch }} ${{ inputs.commit }}
25 shell: bash -euxo pipefail {0}