Skip to content

Commit

Permalink
Remove inappropriate merge strategy and try again with default strate…
Browse files Browse the repository at this point in the history
…gy (ProteoWizard#1673)

Remove inappropriate merge strategy and try again with default strategy
Switch from triggering on push to master to triggering on issue comment
Add more path exclusions for build_and_test.yml
  • Loading branch information
chambm authored Jul 6, 2021
1 parent bfab766 commit 6114939
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
- 'pwiz_tools/Shared/**'
- 'pwiz_tools/Skyline/**'
- 'pwiz_tools/Topograph/**'
- 'scripts/Topograph/**'
- 'doc/**'
- 'clean.*'
- '.github/workflows/cherrypick-to-release.yml'
pull_request:
branches: [ master ]
paths-ignore:
Expand All @@ -24,6 +28,9 @@ on:
- 'pwiz_tools/Shared/**'
- 'pwiz_tools/Skyline/**'
- 'pwiz_tools/Topograph/**'
- 'doc/**'
- 'clean.*'
- '.github/workflows/cherrypick-to-release.yml'

# There is a single job here called "build" (The word "build" is NOT a keyword, you can use anything there)
jobs:
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/cherrypick-to-release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: Cherry-pick from master to Skyline release branch
on:
push:
branches:
- master
#push:
# branches:
# - master
issue_comment:
types:
- created
- edited
jobs:
release_pull_request:
runs-on: ubuntu-latest
Expand All @@ -15,7 +19,7 @@ jobs:
with:
pr_branch: 'Skyline/skyline_21_1'
opt_in_message: '[cp-to-release]'
merge_strategy: '--strategy=recursive -Xtheirs'
#merge_strategy: '--strategy=recursive -Xtheirs'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITBOT_EMAIL: [email protected]
Expand Down

0 comments on commit 6114939

Please sign in to comment.