be a little more tolerant of data variants in BlibBuild with SSL and mzML #2416
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 from master to Skyline release branch | |
on: | |
#push: | |
# branches: | |
# - master | |
issue_comment: | |
types: | |
- created | |
- edited | |
jobs: | |
release_pull_request: | |
runs-on: ubuntu-latest | |
name: release_pull_request | |
steps: | |
- name: Check for trigger | |
uses: khan/pull-request-comment-trigger@master | |
id: check | |
with: | |
trigger: '[cp-to-release]' | |
reaction: rocket | |
env: | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
- name: checkout | |
uses: actions/checkout@v2 | |
if: steps.check.outputs.triggered == 'true' | |
- name: Create PR to branch | |
uses: chambm/[email protected] | |
if: steps.check.outputs.triggered == 'true' | |
with: | |
pr_branch: 'Skyline/skyline_21_1' | |
merge_strategy: '' | |
#merge_strategy: '--strategy=recursive -Xtheirs' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITBOT_EMAIL: [email protected] | |
DRY_RUN: true |