Feature / Stutter as individual settings menu for each clip / kit row / kit global / song global #1368
Workflow file for this run
This file contains 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: Cherry pick | |
on: | |
pull_request_target: | |
branches: | |
- community | |
types: [ "closed" ] | |
permissions: | |
issues: read | |
pull-requests: write | |
contents: write | |
jobs: | |
cherry_pick_release: | |
runs-on: ubuntu-latest | |
name: Cherry pick into release branch | |
if: ${{ contains(github.event.pull_request.labels.*.name, 'cherry-pick') && github.event.pull_request.merged == true }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Cherry pick into release/1.2 | |
uses: carloscastrojumo/github-cherry-pick-action@v1.0.10 | |
with: | |
branch: release/1.2 | |
labels: | | |
cherry-picked |