From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mx.groups.io with SMTP id smtpd.web10.3898.1608346046465454311 for ; Fri, 18 Dec 2020 18:47:26 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.136, mailfrom: michael.d.kinney@intel.com) IronPort-SDR: SrqnQXiH957wJe+rj4crWsZfNH5g+yJO2xvX2k96vIA16EuLsIHi+OI2kjWwJU/9mXSGbCpilr I9/kEs6x9laQ== X-IronPort-AV: E=McAfee;i="6000,8403,9839"; a="154763311" X-IronPort-AV: E=Sophos;i="5.78,432,1599548400"; d="scan'208";a="154763311" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Dec 2020 18:47:23 -0800 IronPort-SDR: E5vao2QsvuUSQerg1aGWx9JudhEdqikzv5dhI32N/mYWbmbeKChO9T6wO5W/ppUFWGuAURV5Dt lN7raTFHtblg== X-IronPort-AV: E=Sophos;i="5.78,432,1599548400"; d="scan'208";a="354344527" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.212.241.132]) by orsmga002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Dec 2020 18:47:23 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Sean Brogan , Bret Barkelew , Liming Gao Subject: [Patch 1/1] .mergify: Enable Mergify for stable/* branches Date: Fri, 18 Dec 2020 18:47:15 -0800 Message-Id: <20201219024715.2000-1-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.29.2.windows.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://bugzilla.tianocore.org/show_bug.cgi?id=3130 Cc: Sean Brogan Cc: Bret Barkelew Cc: Liming Gao Signed-off-by: Michael D Kinney --- .mergify/config.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.mergify/config.yml b/.mergify/config.yml index 26583de0f631..9774aaf49774 100644 --- a/.mergify/config.yml +++ b/.mergify/config.yml @@ -16,7 +16,7 @@ # * This file must be checked into the 'default' branch of a repo. Copies # of this file on other branches of a repo are ignored by Mergify. # -# Copyright (c) 2019, Intel Corporation. All rights reserved.
+# Copyright (c) 2019 - 2020, Intel Corporation. All rights reserved.
# SPDX-License-Identifier: BSD-2-Clause-Patent # # https://github.com/apps/mergify @@ -28,7 +28,7 @@ pull_request_rules: - name: Automatically merge a PR when all required checks pass and 'push' label is present conditions: - - base=master + - base~=(^master|^stable/) - label=push - author=@tianocore/edk-ii-maintainers - status-success=tianocore.PatchCheck @@ -41,7 +41,7 @@ pull_request_rules: - name: Automatically close a PR when all required checks pass and 'push' label is not present conditions: - - base=master + - base~=(^master|^stable/) - -label=push - -closed - status-success=tianocore.PatchCheck @@ -55,7 +55,7 @@ pull_request_rules: - name: Post a comment on a PR that can not be merged due to a merge conflict conditions: - - base=master + - base~=(^master|^stable/) - conflict actions: comment: @@ -63,7 +63,7 @@ pull_request_rules: - name: Automatically close a PR that fails the EDK II Maintainers membership check and 'push' label is present conditions: - - base=master + - base~=(^master|^stable/) - label=push - -author=@tianocore/edk-ii-maintainers actions: @@ -72,7 +72,7 @@ pull_request_rules: - name: Post a comment on a PR if PatchCheck fails conditions: - - base=master + - base~=(^master|^stable/) - status-failure=tianocore.PatchCheck actions: comment: @@ -80,7 +80,7 @@ pull_request_rules: - name: Post a comment on a PR if Ubuntu GCC5 fails conditions: - - base=master + - base~=(^master|^stable/) - status-failure=Ubuntu GCC5 PR - status-success=Ubuntu GCC5 PR (FAILED) actions: @@ -89,7 +89,7 @@ pull_request_rules: - name: Post a comment on a PR if Windows VS2019 fails conditions: - - base=master + - base~=(^master|^stable/) - status-failure=Windows VS2019 PR - status-success=Windows VS2019 PR (FAILED) actions: -- 2.29.2.windows.2