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.web11.7678.1668088042519799131 for ; Thu, 10 Nov 2022 05:47:22 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=e/lI5odd; 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 7973620E67C1; Thu, 10 Nov 2022 05:47:21 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 7973620E67C1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1668088042; bh=S9H5WzSMEQ7ePyPkR59Dmg3sxDT6xNLD1q1TeGh7QP0=; h=From:To:Cc:Subject:Date:From; b=e/lI5oddFfW0AEGkWfHdbK2A44uSJbyXz7YJaRQvAzkUvw/aTvkESicmvCDXVt1YF a8heKdrfmOwEHq0v6/nVLgTKfOfSa4d6DXUq7yE39bszyR9/9sPAhP/HOvKAIdOdXx JTLuzut+4D1K4S1U52rjmp5B08yj2wHaKV0NJaoY= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Sean Brogan , Michael D Kinney Subject: [PATCH v1 1/1] .github/dependabot.yml: Enable dependabot Date: Thu, 10 Nov 2022 08:46:54 -0500 Message-Id: <20221110134654.422-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 Enables dependabot in this repo so we can better alerted when dependency updates are available. This GitHub action will automatically create pull requests and summarize the dependency details. Because it is a pull request, the CI system will validate the dependency update in the pull request. Configures dependabot for: 1. PIP module updates 2. Submodule updates 3. GitHub action updates The maintainers/reviewers of the .github directory were added as pull request reviewers so they can be notified when the pull request is available. Cc: Sean Brogan Cc: Michael D Kinney Signed-off-by: Michael Kubacki --- Notes: An example of the pull requests created by this change are available on my edk2 fork: =20 https://github.com/makubacki/edk2/pulls .github/dependabot.yml | 45 ++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000000..7f405721fd3d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,45 @@ +## @file +# Dependabot configuration file to enable GitHub services for managing a= nd updating +# dependencies. +# +# Copyright (c) Microsoft Corporation. +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuratio= n-options-for-dependency-updates +## +version: 2 +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" + commit-message: + prefix: "pip" + reviewers: + - "makubacki" + - "mdkinney" + - "spbrogan" + + - package-ecosystem: "gitsubmodule" + directory: "/" + schedule: + interval: "daily" + commit-message: + prefix: "submodule" + reviewers: + - "makubacki" + - "mdkinney" + - "spbrogan" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + commit-message: + prefix: "GitHub Action" + reviewers: + - "makubacki" + - "mdkinney" + - "spbrogan" --=20 2.28.0.windows.1