Move to new set of refactored Jvt-related tools #104
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
on: | |
pull_request: | |
branches: | |
- main | |
- r21/main | |
types: ["closed"] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
cherry_pick_release_r22: | |
runs-on: ubuntu-latest | |
name: Cherry pick into main | |
if: >- | |
github.event.pull_request.merged | |
&& contains(github.event.pull_request.labels.*.name, 'sweep-r22') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Cherry pick into release-v1.0 | |
uses: carloscastrojumo/[email protected] | |
with: | |
branch: main | |
labels: | | |
cherry-pick | |
reviewers: | | |
jbossios | |
cherry_pick_release_r21: | |
runs-on: ubuntu-latest | |
name: Cherry pick into r21/main | |
if: >- | |
github.event.pull_request.merged | |
&& contains(github.event.pull_request.labels.*.name, 'sweep-r21') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Cherry pick into release-v1.0 | |
uses: carloscastrojumo/[email protected] | |
with: | |
branch: r21/main | |
labels: | | |
cherry-pick | |
reviewers: | | |
kratsg |