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/release-draft-config-n-1-dev.yml

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