Skip to content

Commit ab8ea77

Browse files
uefibotmakubacki
authored andcommitted
Repo File Sync: synced file(s) with microsoft/mu_devops (#239)
1 parent dfd6b4c commit ab8ea77

13 files changed

+60
-19
lines changed

.azurepipelines/MuDevOpsWrapper.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resources:
1919
type: github
2020
endpoint: microsoft
2121
name: microsoft/mu_devops
22-
ref: refs/tags/v7.2.0
22+
ref: refs/tags/v9.1.1
2323

2424
parameters:
2525
- name: do_ci_build
@@ -42,13 +42,6 @@ parameters:
4242
displayName: Perform Stuart PR Evaluation
4343
type: boolean
4444
default: true
45-
- name: calculate_code_coverage
46-
displayName: Calculate Code Coverage From Unit Tests
47-
default: false
48-
- name: coverage_publish_target
49-
displayName: Code Coverage Publish Target
50-
type: string
51-
default: 'ado' # 'ado', 'codecov'
5245
- name: container_build
5346
displayName: Flag for whether this repo should do stuart_setup
5447
type: boolean
@@ -95,8 +88,6 @@ jobs:
9588
do_ci_build: ${{ parameters.do_ci_build }}
9689
do_ci_setup: ${{ parameters.do_ci_setup }}
9790
do_pr_eval: ${{ parameters.do_pr_eval }}
98-
calculate_code_coverage: ${{ parameters.calculate_code_coverage }}
99-
coverage_publish_target: ${{ parameters.coverage_publish_target }}
10091
do_non_ci_setup: ${{ parameters.do_non_ci_setup }}
10192
do_non_ci_build: ${{ parameters.do_non_ci_build }}
10293
build_matrix: ${{ parameters.build_matrix }}

.azurepipelines/Ubuntu-GCC5.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
variables:
1818
- group: architectures-arm-64-x86-64
1919
- group: tool-chain-ubuntu-gcc
20+
- group: coverage
2021

2122
extends:
2223
template: MuDevOpsWrapper.yml

.azurepipelines/Windows-VS.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
variables:
1818
- group: architectures-x86-64
1919
- group: tool-chain-windows-visual-studio-latest
20+
- group: coverage
2021

2122
extends:
2223
template: MuDevOpsWrapper.yml

.github/workflows/auto-approve.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@ on:
2323

2424
jobs:
2525
approval_check:
26+
27+
permissions:
28+
pull-requests: write
29+
2630
if: |
2731
github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'uefibot'
28-
uses: microsoft/mu_devops/.github/workflows/AutoApprover.yml@v7.2.0
32+
uses: microsoft/mu_devops/.github/workflows/AutoApprover.yml@v9.1.1
2933
secrets: inherit

.github/workflows/auto-merge.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,13 @@ on:
2424

2525
jobs:
2626
merge_check:
27+
28+
permissions:
29+
contents: read
30+
pull-requests: write
31+
issues: write
32+
2733
if: |
2834
github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'uefibot'
29-
uses: microsoft/mu_devops/.github/workflows/AutoMerger.yml@v7.2.0
35+
uses: microsoft/mu_devops/.github/workflows/AutoMerger.yml@v9.1.1
3036
secrets: inherit

.github/workflows/issue-assignment.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,9 @@ on:
1818

1919
jobs:
2020
apply:
21-
uses: microsoft/mu_devops/.github/workflows/IssueAssignment.yml@v7.2.0
21+
22+
permissions:
23+
contents: read
24+
issues: write
25+
26+
uses: microsoft/mu_devops/.github/workflows/IssueAssignment.yml@v9.1.1

.github/workflows/label-issues.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,9 @@ on:
3131

3232
jobs:
3333
apply:
34-
uses: microsoft/mu_devops/.github/workflows/Labeler.yml@v7.2.0
34+
35+
permissions:
36+
contents: read
37+
pull-requests: write
38+
39+
uses: microsoft/mu_devops/.github/workflows/Labeler.yml@v9.1.1

.github/workflows/label-sync.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,8 @@ on:
2424

2525
jobs:
2626
sync:
27-
uses: microsoft/mu_devops/.github/workflows/LabelSyncer.yml@v7.2.0
27+
28+
permissions:
29+
issues: write
30+
31+
uses: microsoft/mu_devops/.github/workflows/LabelSyncer.yml@v9.1.1

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ on:
2323
jobs:
2424
validate_pr:
2525
runs-on: ubuntu-latest
26+
27+
permissions:
28+
contents: read
29+
pull-requests: write
30+
2631
steps:
2732
- run: |
2833
prTitle="$(gh api graphql -F owner=$OWNER -F name=$REPO -F pr_number=$PR_NUMBER -f query='
@@ -48,7 +53,7 @@ jobs:
4853
4954
- name: Check for Validation Errors
5055
if: env.VALIDATION_ERROR
51-
uses: actions/github-script@v7
56+
uses: actions/github-script@v6
5257
with:
5358
script: |
5459
core.setFailed('PR Formatting Validation Check Failed!')

.github/workflows/release-draft.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,10 @@ on:
2727

2828
jobs:
2929
draft:
30-
uses: microsoft/mu_devops/.github/workflows/ReleaseDrafter.yml@v7.2.0
30+
31+
permissions:
32+
contents: write
33+
pull-requests: write
34+
35+
uses: microsoft/mu_devops/.github/workflows/ReleaseDrafter.yml@v9.1.1
3136
secrets: inherit

0 commit comments

Comments
 (0)