microsoft/mu_tiano_platforms

Public

mirrored fromhttps://github.com/microsoft/mu_tiano_platformsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dda280ce10e308d38752afdef6155cdae0d7d5c9

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/dependabot.yml

59lines · modecode

1## @file
2# Dependabot configuration file to enable GitHub services for managing and updating
3# dependencies.
4#
5# NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there
6# instead of the file in this repo.
7#
8# This dependabot file is limited to syncing the following type of dependencies. Other files
9# are already available in Mu DevOps to sync other dependency types.
10# - GitHub Actions (`github-actions`)
11# - Git Submodules (`gitsubmodule`)
12# - Python PIP Modules (`pip`)
13#
14# - Mu DevOps Repo: https://github.com/microsoft/mu_devops
15# - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml
16#
17# Copyright (c) Microsoft Corporation.
18# SPDX-License-Identifier: BSD-2-Clause-Patent
19#
20# Please see the documentation for all dependabot configuration options:
21# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
22##
23
24version: 2
25
26updates:
27 - package-ecosystem: "github-actions"
28 directory: "/"
29 schedule:
30 interval: "weekly"
31 day: "monday"
32 timezone: "America/Los_Angeles"
33 time: "06:00"
34 commit-message:
35 prefix: "GitHub Action"
36 labels:
37 - "type:dependencies"
38
39 - package-ecosystem: "gitsubmodule"
40 directory: "/"
41 schedule:
42 interval: "daily"
43 timezone: "America/Los_Angeles"
44 time: "23:00"
45 labels:
46 - "type:submodules"
47 - "type:dependencies"
48
49 - package-ecosystem: "pip"
50 directory: "/"
51 schedule:
52 interval: "daily"
53 timezone: "America/Los_Angeles"
54 time: "01:00"
55 commit-message:
56 prefix: "pip"
57 labels:
58 - "language:python"
59 - "type:dependencies"