Merge pull request #1800 from psacawa/post-merge-pr

Add support for post-merge hooks
This commit is contained in:
Anthony Sottile 2021-02-27 09:19:40 -08:00 committed by GitHub
commit b193d9e67b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 82 additions and 5 deletions

View file

@ -70,6 +70,7 @@ def run_opts(
show_diff_on_failure=False,
commit_msg_filename='',
checkout_type='',
is_squash_merge='',
):
# These are mutually exclusive
assert not (all_files and files)
@ -88,6 +89,7 @@ def run_opts(
show_diff_on_failure=show_diff_on_failure,
commit_msg_filename=commit_msg_filename,
checkout_type=checkout_type,
is_squash_merge=is_squash_merge,
)