microsoft/mu_feature_ffa
Publicmirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable
.github/workflows/release-draft.yml
33lines · modecode
| 1 | # This workflow automatically drafts new project releases so it is obvious |
| 2 | # what a current release will look like at any time. |
| 3 | # |
| 4 | # It takes advantage of the labels used in Project Mu to automatically categorize |
| 5 | # the types of changes in a given release. In addition, the semantic version of |
| 6 | # the code is constantly maintained based on Project Mu label conventions to ensure |
| 7 | # semantic versioning is followed and a release version is always ready. |
| 8 | # |
| 9 | # NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there |
| 10 | # instead of the file in this repo. |
| 11 | # |
| 12 | # - Mu DevOps Repo: https://github.com/microsoft/mu_devops |
| 13 | # - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml |
| 14 | # |
| 15 | # Copyright (c) Microsoft Corporation. |
| 16 | # SPDX-License-Identifier: BSD-2-Clause-Patent |
| 17 | # |
| 18 | # For more information, see: |
| 19 | # https://github.com/release-drafter/release-drafter |
| 20 | |
| 21 | name: Update Release Draft |
| 22 | |
| 23 | on: |
| 24 | push: |
| 25 | branches: |
| 26 | - main |
| 27 | |
| 28 | jobs: |
| 29 | draft: |
| 30 | name: Draft Releases |
| 31 | |
| 32 | uses: microsoft/mu_devops/.github/workflows/ReleaseDrafter.yml@v17.0.1 |
| 33 | secrets: inherit |
| 34 | |