Deal with ambiguity in TargetResolver where a mass-only molecule had very small differences in iRT library and document… #2236
This file contains hidden or 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/github-action-cherry-pick@0.1.0 | |
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: actions@users.noreply.github.com | |
DRY_RUN: true |