Add new digital reverb model #1370
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/[email protected] | |
with: | |
branch: release/1.2 | |
labels: | | |
cherry-picked |