microsoft/mu_feature_ffa

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
3d4b142bc3f2df66be0148459e45a92d4a1edf2c

Branches

Tags

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

Clone

HTTPS

Download ZIP

.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
16name: Sync GitHub Labels
17
18on:
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
25jobs:
26 sync:
27
28 uses: microsoft/mu_devops/.github/workflows/LabelSyncer.yml@v17.0.1
29 secrets: inherit
30