microsoft/mu_feature_ffa

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.2

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/workflows/label-issues/regex-pull-requests.yml

38lines · modecode

1# Specifies labels to apply to pull requests in Project Mu repositories based on regular expressions.
2#
3# NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there
4# instead of the file in this repo.
5#
6# - Mu DevOps Repo: https://github.com/microsoft/mu_devops
7# - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml
8#
9# Copyright (c) Microsoft Corporation.
10# SPDX-License-Identifier: BSD-2-Clause-Patent
11#
12# For more information, see:
13# https://github.com/srvaroa/labeler
14
15# Maintenance: Keep labels organized in ascending alphabetical order - easier to scan, identify duplicates, etc.
16version: 1
17issues: False
18
19labels:
20 - label: impact:breaking-change
21 type: "pull_request"
22 body: '\s*\[\s*(x|X){1}\s*\]\s*Breaking\s*change\?'
23
24 - label: type:documentation
25 type: "pull_request"
26 body: '\s*\[\s*(x|X){1}\s*\]\s*Includes\s*documentation\?'
27
28 - label: impact:non-functional
29 type: "pull_request"
30 body: '\s*\[\s*\]\s*Impacts\s*functionality\?'
31
32 - label: impact:security
33 type: "pull_request"
34 body: '\s*\[\s*(x|X){1}\s*\]\s*Impacts\s*security\?'
35
36 - label: impact:testing
37 type: "pull_request"
38 body: '\[\s*(x|X){1}\s*\]\s*Includes\s*tests\?'
39