microsoft/mu_feature_ffa

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c9842c888abc6eba92f034d4796a26f76abb2f42

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/dependabot.yml

75lines · 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 commit-message:
56 prefix: "GitHub Action"
57 labels:
58 - "type:dependencies"
59 - "type:dependabot"
60 rebase-strategy: "disabled"
61
62 - package-ecosystem: "pip"
63 directory: "/"
64 schedule:
65 interval: "weekly"
66 day: "wednesday"
67 timezone: "America/Los_Angeles"
68 time: "01:00"
69 commit-message:
70 prefix: "pip"
71 labels:
72 - "language:python"
73 - "type:dependencies"
74 - "type:dependabot"
75 rebase-strategy: "disabled"
76