diff options
-rw-r--r-- | .github/dependabot.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..b4e0b93b16 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,34 @@ +## @file
+# Dependabot configuration file to enable GitHub services for managing and 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/configuration-options-for-dependency-updates
+##
+version: 2
+updates:
+ - package-ecosystem: "pip"
+ directory: "/"
+ schedule:
+ interval: "daily"
+ commit-message:
+ prefix: "pip"
+ reviewers:
+ - "makubacki"
+ - "mdkinney"
+ - "spbrogan"
+
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "weekly"
+ day: "monday"
+ commit-message:
+ prefix: "GitHub Action"
+ reviewers:
+ - "makubacki"
+ - "mdkinney"
+ - "spbrogan"
|