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.10691.1680306551497573574 for ; Fri, 31 Mar 2023 16:49:11 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=DwFZ5VFZ; 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 6821220FFE00; Fri, 31 Mar 2023 16:49:10 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 6821220FFE00 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1680306550; bh=QC7Fr+82ozH9JEofpDB/LIlB7mu5AI15eyPcqB+mm4Y=; h=From:To:Cc:Subject:Date:From; b=DwFZ5VFZwVg87c8i2QQoeD69Jrn0xIAdc7u5mFmp6+8GhDiohshxKUP+dCNdVprC/ tX5XHTT2aQGIwnXPnuJ5RBk4AC3YN0HAkYvP7+Vo0ODFai0IotbGt7J+5KCZODU+8k Hf09f3EDoHTDB30GeTw3OZp/+5GZg61ikmUdCSQw= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Sean Brogan , Michael D Kinney Subject: [PATCH v1 1/1] .github/dependabot.yml: Disable automatic rebasing Date: Fri, 31 Mar 2023 19:48:47 -0400 Message-Id: <20230331234847.1565-1-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.40.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki Sets the rebase-strategy to "disabled" to prevent automatic rebasing. Rebasing can be done manually in the dependabot PR either through the GitHub UI or the dependabot command. Cc: Sean Brogan Cc: Michael D Kinney Signed-off-by: Michael Kubacki --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b4e0b93b16ca..479440fe6397 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,6 +20,7 @@ updates: - "makubacki" - "mdkinney" - "spbrogan" + rebase-strategy: "disabled" =20 - package-ecosystem: "github-actions" directory: "/" @@ -32,3 +33,4 @@ updates: - "makubacki" - "mdkinney" - "spbrogan" + rebase-strategy: "disabled" --=20 2.40.0.windows.1