microsoft/mu_feature_ffa

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.4

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/release-draft-config-n.yml

101lines · modecode

1# Defines the configuration used for drafting new releases.
2#
3# IMPORTANT: Only use labels defined in the .github/Labels.yml file in this repo.
4#
5# NOTE: `semver:major`, `semver:minor`, and `semver:patch` can be used to force that
6# version to roll regardless of other labels.
7#
8# NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there
9# instead of the file in this repo.
10#
11# - Mu DevOps Repo: https://github.com/microsoft/mu_devops
12# - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml
13#
14# Copyright (c) Microsoft Corporation.
15# SPDX-License-Identifier: BSD-2-Clause-Patent
16#
17# For more information, see:
18# https://github.com/release-drafter/release-drafter
19
20name-template: 'dev-v$RESOLVED_VERSION'
21tag-template: 'dev-v$RESOLVED_VERSION'
22
23commitish: refs/heads/dev/202405
24filter-by-commitish: true
25include-labels: ["type:backport"]
26
27template: |
28 # What's Changed
29
30 $CHANGES
31
32 **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...dev-v$RESOLVED_VERSION
33
34categories:
35 - title: '⚠️ Breaking Changes'
36 labels:
37 - 'impact:breaking-change'
38 - title: '🚀 Features & ✨ Enhancements'
39 labels:
40 - 'type:design-change'
41 - 'type:enhancement'
42 - 'type:feature-request'
43 - title: '🐛 Bug Fixes'
44 labels:
45 - 'type:bug'
46 - title: '🔐 Security Impacting'
47 labels:
48 - 'impact:security'
49 - title: '📖 Documentation Updates'
50 labels:
51 - 'type:documentation'
52 - title: '🛠️ Submodule Updates'
53 labels:
54 - 'type:submodules'
55
56change-template: >-
57 <ul>
58 <li>
59 $TITLE @$AUTHOR (#$NUMBER)
60 <br>
61 <details>
62 <summary>Change Details</summary>
63 <blockquote>
64 <!-- Non-breaking space to have content if body is empty -->
65 &nbsp; $BODY
66 </blockquote>
67 <hr>
68 </details>
69 </li>
70 </ul>
71
72change-title-escapes: '\<*_&@' # Note: @ is added to disable mentions
73
74# Maintenance: Keep labels organized in ascending alphabetical order - easier to scan, identify duplicates, etc.
75version-resolver:
76 major:
77 labels:
78 - 'impact:breaking-change'
79 - 'semver:major'
80 minor:
81 labels:
82 - 'semver:minor'
83 - 'type:design-change'
84 - 'type:enhancement'
85 - 'type:feature-request'
86 patch:
87 labels:
88 - 'impact:non-functional'
89 - 'semver:patch'
90 - 'type:bug'
91 - 'type:documentation'
92 default: patch
93
94exclude-labels:
95 - 'type:dependabot'
96 - 'type:file-sync'
97 - 'type:notes'
98 - 'type:question'
99
100exclude-contributors:
101 - 'uefibot'
102