microsoft/mu_feature_ffa
Publicmirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable
.github/dependabot.yml
73lines · 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 | |
| 27 | version: 2 |
| 28 | |
| 29 | updates: |
| 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 | - dependency-name: "microsoft/mu_devops" |
| 53 | commit-message: |
| 54 | prefix: "GitHub Action" |
| 55 | labels: |
| 56 | - "type:dependencies" |
| 57 | - "type:dependabot" |
| 58 | rebase-strategy: "disabled" |
| 59 | |
| 60 | - package-ecosystem: "pip" |
| 61 | directory: "/" |
| 62 | schedule: |
| 63 | interval: "weekly" |
| 64 | day: "wednesday" |
| 65 | timezone: "America/Los_Angeles" |
| 66 | time: "01:00" |
| 67 | commit-message: |
| 68 | prefix: "pip" |
| 69 | labels: |
| 70 | - "language:python" |
| 71 | - "type:dependencies" |
| 72 | - "type:dependabot" |
| 73 | rebase-strategy: "disabled" |
| 74 | |