|
| 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 | + |
| 20 | +name-template: 'dev-v$RESOLVED_VERSION' |
| 21 | +tag-template: 'dev-v$RESOLVED_VERSION' |
| 22 | + |
| 23 | +commitish: refs/heads/dev/202311 |
| 24 | +filter-by-commitish: true |
| 25 | + |
| 26 | +template: | |
| 27 | + # What's Changed |
| 28 | +
|
| 29 | + $CHANGES |
| 30 | +
|
| 31 | + **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION |
| 32 | +
|
| 33 | +categories: |
| 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 | + |
| 55 | +change-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 | + $BODY |
| 65 | + </blockquote> |
| 66 | + <hr> |
| 67 | + </details> |
| 68 | + </li> |
| 69 | + </ul> |
| 70 | +
|
| 71 | +change-title-escapes: '\<*_&@' # Note: @ is added to disable mentions |
| 72 | + |
| 73 | +# Maintenance: Keep labels organized in ascending alphabetical order - easier to scan, identify duplicates, etc. |
| 74 | +version-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 | + |
| 93 | +exclude-labels: |
| 94 | + - 'type:dependabot' |
| 95 | + - 'type:file-sync' |
| 96 | + - 'type:notes' |
| 97 | + - 'type:question' |
| 98 | + |
| 99 | +exclude-contributors: |
| 100 | + - 'uefibot' |
0 commit comments