From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web10.18304.1676304297808774265 for ; Mon, 13 Feb 2023 08:04:57 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=X8zbPyNq; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.201.8.94]) by linux.microsoft.com (Postfix) with ESMTPSA id BBBED20C8B73; Mon, 13 Feb 2023 08:04:56 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com BBBED20C8B73 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1676304297; bh=8g3gMF2UjZGI52idgzH7bbUIgojogVssnuaXPDIcsbw=; h=From:To:Cc:Subject:Date:From; b=X8zbPyNq/IlekXYnpAYqPsJrDMX8gu8/HM/T1b7cxei6Uvgs8OyCy3XhxlaZzpEWb ZqulKVVd3Szcmt/PyJkmQ1bmvq5DD5bdiuXTfUk8yYn7jzHbVe5LjtsV7pnUhHyl1e p9tZB1lcmeklcsC/S2vmsb4miT57PojP0lKp/2dU= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao , Sean Brogan Subject: [PATCH v1 1/1] .mergify/config.yml: Remove rebase_fallback attribute (deprecated) Date: Mon, 13 Feb 2023 11:04:41 -0500 Message-Id: <20230213160441.2121-1-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki PR builds and CI are currently broken due to a mergify brownout today because edk2 uses the `rebase_fallback` attribute of the `queue` action. Message from Mergify/Summary: ``` The configuration uses the deprecated rebase_fallback attribute of the queue action. A brownout is planned on February 13th, 2023. This option will be removed on March 13th, 2023. For more information: https://docs.mergify.com/actions/queue/ ``` Therefore, this change removes the attribute per the guidance in the following changelog message to retain existing behavior. https://changelog.mergify.com/changelog/rebasefallback-is-deprecated ``` The option rebase_fallback is now deprecated and should not be used anymore. Mergify will always report errors in the future if a rebase merge is impossible. ``` Cc: Michael D Kinney Cc: Liming Gao Cc: Sean Brogan Signed-off-by: Michael Kubacki --- Notes: PR with change is here: https://github.com/tianocore/edk2/pull/4035 .mergify/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.mergify/config.yml b/.mergify/config.yml index bd6da4c77937..3471896a3495 100644 --- a/.mergify/config.yml +++ b/.mergify/config.yml @@ -38,7 +38,6 @@ pull_request_rules: actions: queue: method: rebase - rebase_fallback: none name: default =20 - name: Post a comment on a PR that can not be merged due to a merge c= onflict --=20 2.28.0.windows.1