microsoft/mu_feature_ffa

Public

mirrored from https://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.7

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/dependabot.yml

83lines · 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# - Rust Crate Dependencies (`cargo`)
11# - GitHub Actions (`github-actions`)
12# - Python PIP Modules (`pip`)
13#
14# Dependabot does not update the microsoft/mu_devops version because that is updated once in mu_devops
15# and then synced to all repos when the file sync occurs.
16#
17# - Mu DevOps Repo: https://github.com/microsoft/mu_devops
18# - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml
19#
20# Copyright (c) Microsoft Corporation.
21# SPDX-License-Identifier: BSD-2-Clause-Patent
22#
23# Please see the documentation for all dependabot configuration options:
24# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
25##
26
27version: 2
28
29updates:
30 - package-ecosystem: "cargo"
31 directory: "/"
32 schedule:
33 interval: "weekly"
34 day: "monday"
35 timezone: "America/Los_Angeles"
36 time: "03:00"
37 commit-message:
38 prefix: "Rust Dependency"
39 labels:
40 - "type:dependencies"
41 - "type:dependabot"
42 rebase-strategy: "disabled"
43
44 - package-ecosystem: "github-actions"
45 directory: "/"
46 schedule:
47 interval: "weekly"
48 day: "monday"
49 timezone: "America/Los_Angeles"
50 time: "06:00"
51 ignore:
52 # Ignore dependencies that are synced from mu_devops
53 - dependency-name: "microsoft/mu_devops*"
54 - dependency-name: "github/codeql-action*"
55 groups:
56 all-actions-dependencies:
57 patterns:
58 - "*"
59 commit-message:
60 prefix: "GitHub Action"
61 labels:
62 - "type:dependencies"
63 - "type:dependabot"
64 rebase-strategy: "disabled"
65
66 - package-ecosystem: "pip"
67 directory: "/"
68 schedule:
69 interval: "weekly"
70 day: "wednesday"
71 timezone: "America/Los_Angeles"
72 time: "01:00"
73 groups:
74 all-pip-dependencies:
75 patterns:
76 - "*"
77 commit-message:
78 prefix: "pip"
79 labels:
80 - "language:python"
81 - "type:dependencies"
82 - "type:dependabot"
83 rebase-strategy: "disabled"
84