microsoft/mu_feature_ffa
Publicmirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable
.github/workflows/label-sync.yml
29lines · modecode
| 1 | # This workflow syncs GitHub labels to the common set of labels defined in Mu DevOps. |
| 2 | # |
| 3 | # All repos should sync at the same time. |
| 4 | # '0 0,12 * * *'' |
| 5 | # |
| 6 | # NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there |
| 7 | # instead of the file in this repo. |
| 8 | # |
| 9 | # - Mu DevOps Repo: https://github.com/microsoft/mu_devops |
| 10 | # - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml |
| 11 | # |
| 12 | # Copyright (c) Microsoft Corporation. |
| 13 | # SPDX-License-Identifier: BSD-2-Clause-Patent |
| 14 | # |
| 15 | |
| 16 | name: Sync GitHub Labels |
| 17 | |
| 18 | on: |
| 19 | schedule: |
| 20 | # At minute 0 past hour 0 and 12 |
| 21 | # https://crontab.guru/#0_0,12_*_*_* |
| 22 | - cron: '0 0,12 * * *' |
| 23 | workflow_dispatch: |
| 24 | |
| 25 | jobs: |
| 26 | sync: |
| 27 | |
| 28 | uses: microsoft/mu_devops/.github/workflows/LabelSyncer.yml@v17.0.1 |
| 29 | secrets: inherit |
| 30 | |