microsoft/mu_feature_ffa

Public

mirrored from https://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
main

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/release-draft-config.yml

98lines · 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: 'v$RESOLVED_VERSION'
21tag-template: 'v$RESOLVED_VERSION'
22
23
24template: |
25 # What's Changed
26
27 $CHANGES
28
29 **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
30
31categories:
32 - title: '⚠️ Breaking Changes'
33 labels:
34 - 'impact:breaking-change'
35 - title: '🚀 Features & ✨ Enhancements'
36 labels:
37 - 'type:design-change'
38 - 'type:enhancement'
39 - 'type:feature-request'
40 - title: '🐛 Bug Fixes'
41 labels:
42 - 'type:bug'
43 - title: '🔐 Security Impacting'
44 labels:
45 - 'impact:security'
46 - title: '📖 Documentation Updates'
47 labels:
48 - 'type:documentation'
49 - title: '🛠️ Submodule Updates'
50 labels:
51 - 'type:submodules'
52
53change-template: >-
54 <ul>
55 <li>
56 $TITLE @$AUTHOR (#$NUMBER)
57 <br>
58 <details>
59 <summary>Change Details</summary>
60 <blockquote>
61 <!-- Non-breaking space to have content if body is empty -->
62 &nbsp; $BODY
63 </blockquote>
64 <hr>
65 </details>
66 </li>
67 </ul>
68
69change-title-escapes: '\<*_&@' # Note: @ is added to disable mentions
70
71# Maintenance: Keep labels organized in ascending alphabetical order - easier to scan, identify duplicates, etc.
72version-resolver:
73 major:
74 labels:
75 - 'impact:breaking-change'
76 - 'semver:major'
77 minor:
78 labels:
79 - 'semver:minor'
80 - 'type:design-change'
81 - 'type:enhancement'
82 - 'type:feature-request'
83 patch:
84 labels:
85 - 'impact:non-functional'
86 - 'semver:patch'
87 - 'type:bug'
88 - 'type:documentation'
89 default: patch
90
91exclude-labels:
92 - 'type:dependabot'
93 - 'type:file-sync'
94 - 'type:notes'
95 - 'type:question'
96
97exclude-contributors:
98 - 'uefibot'
99