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-issues.yml

35lines · modecode

1# This workflow automatically applies labels to GitHub issues and pull requests based on the
2# file paths in a pull request or content in the body of an issue or pull request.
3#
4# NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there
5# instead of the file in this repo.
6#
7# NOTE: This file uses a reusable workflow. Do not make changes to the file that should be made
8# in the common/reusable workflow.
9#
10# - Mu DevOps Repo: https://github.com/microsoft/mu_devops
11# - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml
12#
13# Copyright (c) Microsoft Corporation.
14# SPDX-License-Identifier: BSD-2-Clause-Patent
15#
16
17name: Apply Issue and PR Labels
18
19on:
20 issues:
21 types:
22 - edited
23 - opened
24 pull_request_target:
25 types:
26 - edited
27 - opened
28 - reopened
29 - synchronize
30 workflow_dispatch:
31
32jobs:
33 apply:
34 uses: microsoft/mu_devops/.github/workflows/Labeler.yml@v17.0.1
35 secrets: inherit
36