Merge pull request #9109 from SeekingMeaning/automerge/exclude-linux-only

pr-automerge: don't automerge PRs with linux-only label
This commit is contained in:
Mike McQuaid 2020-11-16 12:54:59 +00:00 committed by GitHub
commit aaa38b6a35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ module Homebrew
def pr_automerge
args = pr_automerge_args.parse
without_labels = args.without_labels || ["do not merge", "new formula", "automerge-skip"]
without_labels = args.without_labels || ["do not merge", "new formula", "automerge-skip", "linux-only"]
tap = Tap.fetch(args.tap || CoreTap.instance.name)
query = "is:pr is:open repo:#{tap.full_name}"