Skip to content

Commit 32769a2

Browse files
Repo File Sync: Update to Mu DevOps v17.0.1 (#149)
synced local file(s) with [microsoft/mu_devops](https://github.com/microsoft/mu_devops). 🤖: View the [Repo File Sync Configuration File](https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml) to see how files are synced. --- This PR was created automatically by the [repo-file-sync-action](https://github.com/BetaHuhn/repo-file-sync-action) workflow run [#17608786290](https://github.com/microsoft/mu_devops/actions/runs/17608786290) Signed-off-by: Project Mu UEFI Bot <uefibot@microsoft.com> Co-authored-by: Michael Kubacki <michael.kubacki@microsoft.com>
1 parent 9104200 commit 32769a2

File tree

8 files changed

+108
-12
lines changed

8 files changed

+108
-12
lines changed

.github/release-draft-config.yml

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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: 'v$RESOLVED_VERSION'
21+
tag-template: 'v$RESOLVED_VERSION'
22+
23+
24+
template: |
25+
# What's Changed
26+
27+
$CHANGES
28+
29+
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
30+
31+
categories:
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+
53+
change-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+
69+
change-title-escapes: '\<*_&@' # Note: @ is added to disable mentions
70+
71+
# Maintenance: Keep labels organized in ascending alphabetical order - easier to scan, identify duplicates, etc.
72+
version-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+
91+
exclude-labels:
92+
- 'type:dependabot'
93+
- 'type:file-sync'
94+
- 'type:notes'
95+
- 'type:question'
96+
97+
exclude-contributors:
98+
- 'uefibot'

.github/workflows/issue-assignment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ on:
1919
jobs:
2020
apply:
2121

22-
uses: microsoft/mu_devops/.github/workflows/IssueAssignment.yml@v15.0.3
22+
uses: microsoft/mu_devops/.github/workflows/IssueAssignment.yml@v17.0.1
2323
secrets: inherit

.github/workflows/label-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ on:
3131

3232
jobs:
3333
apply:
34-
uses: microsoft/mu_devops/.github/workflows/Labeler.yml@v15.0.3
34+
uses: microsoft/mu_devops/.github/workflows/Labeler.yml@v17.0.1
3535
secrets: inherit

.github/workflows/label-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ on:
2525
jobs:
2626
sync:
2727

28-
uses: microsoft/mu_devops/.github/workflows/LabelSyncer.yml@v15.0.3
28+
uses: microsoft/mu_devops/.github/workflows/LabelSyncer.yml@v17.0.1
2929
secrets: inherit

.github/workflows/pull-request-formatting-validator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
5858
- name: Check for Validation Errors
5959
if: env.VALIDATION_ERROR
60-
uses: actions/github-script@v7
60+
uses: actions/github-script@v8
6161
with:
6262
script: |
6363
core.setFailed('PR Formatting Validation Check Failed!')

.github/workflows/release-draft.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,13 @@
2121
name: Update Release Draft
2222

2323
on:
24-
workflow_run:
25-
workflows: ["Backport Commits to Release Branch"]
26-
branches: [dev/202502]
27-
types:
28-
- completed
24+
push:
25+
branches:
26+
- main
2927

3028
jobs:
3129
draft:
3230
name: Draft Releases
3331

34-
uses: microsoft/mu_devops/.github/workflows/ReleaseDrafter.yml@v15.0.3
32+
uses: microsoft/mu_devops/.github/workflows/ReleaseDrafter.yml@v17.0.1
3533
secrets: inherit

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ on:
2525
jobs:
2626
check:
2727

28-
uses: microsoft/mu_devops/.github/workflows/Stale.yml@v15.0.3
28+
uses: microsoft/mu_devops/.github/workflows/Stale.yml@v17.0.1
2929
secrets: inherit

.github/workflows/triage-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ on:
2020
jobs:
2121
triage:
2222

23-
uses: microsoft/mu_devops/.github/workflows/IssueTriager.yml@v15.0.3
23+
uses: microsoft/mu_devops/.github/workflows/IssueTriager.yml@v17.0.1
2424
secrets: inherit

0 commit comments

Comments
 (0)