Skyline has at least one checked in devtools "bin" folder, don't stomp if contents are source controlled #1030
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 PR to release | |
# Controls when the workflow will run | |
on: | |
pull_request: | |
branches: [ master ] | |
types: [ closed ] | |
jobs: | |
release_pull_request: | |
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'Cherry pick to release') | |
runs-on: ubuntu-latest | |
name: release_pull_request | |
steps: | |
- name: checkout | |
uses: actions/checkout@v1 | |
- name: Cherry pick PR to release | |
uses: chambm/gh-backport-action@master | |
with: | |
pr_branch: 'Skyline/skyline_24_1' | |
pr_title: 'Automatic cherry pick of #{pr_number} from {base_branch} to {pr_branch}' | |
github_token: ${{ secrets.GITHUB_TOKEN }} |