File tree Expand file tree Collapse file tree 13 files changed +60
-19
lines changed Expand file tree Collapse file tree 13 files changed +60
-19
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ resources:
19
19
type : github
20
20
endpoint : microsoft
21
21
name : microsoft/mu_devops
22
- ref : refs/tags/v7.2.0
22
+ ref : refs/tags/v9.1.1
23
23
24
24
parameters :
25
25
- name : do_ci_build
@@ -42,13 +42,6 @@ parameters:
42
42
displayName : Perform Stuart PR Evaluation
43
43
type : boolean
44
44
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'
52
45
- name : container_build
53
46
displayName : Flag for whether this repo should do stuart_setup
54
47
type : boolean
95
88
do_ci_build : ${{ parameters.do_ci_build }}
96
89
do_ci_setup : ${{ parameters.do_ci_setup }}
97
90
do_pr_eval : ${{ parameters.do_pr_eval }}
98
- calculate_code_coverage : ${{ parameters.calculate_code_coverage }}
99
- coverage_publish_target : ${{ parameters.coverage_publish_target }}
100
91
do_non_ci_setup : ${{ parameters.do_non_ci_setup }}
101
92
do_non_ci_build : ${{ parameters.do_non_ci_build }}
102
93
build_matrix : ${{ parameters.build_matrix }}
Original file line number Diff line number Diff line change 17
17
variables :
18
18
- group : architectures-arm-64-x86-64
19
19
- group : tool-chain-ubuntu-gcc
20
+ - group : coverage
20
21
21
22
extends :
22
23
template : MuDevOpsWrapper.yml
Original file line number Diff line number Diff line change 17
17
variables :
18
18
- group : architectures-x86-64
19
19
- group : tool-chain-windows-visual-studio-latest
20
+ - group : coverage
20
21
21
22
extends :
22
23
template : MuDevOpsWrapper.yml
Original file line number Diff line number Diff line change 23
23
24
24
jobs :
25
25
approval_check :
26
+
27
+ permissions :
28
+ pull-requests : write
29
+
26
30
if : |
27
31
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
29
33
secrets : inherit
Original file line number Diff line number Diff line change 24
24
25
25
jobs :
26
26
merge_check :
27
+
28
+ permissions :
29
+ contents : read
30
+ pull-requests : write
31
+ issues : write
32
+
27
33
if : |
28
34
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
30
36
secrets : inherit
Original file line number Diff line number Diff line change 18
18
19
19
jobs :
20
20
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
Original file line number Diff line number Diff line change 31
31
32
32
jobs :
33
33
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
Original file line number Diff line number Diff line change 24
24
25
25
jobs :
26
26
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
Original file line number Diff line number Diff line change 23
23
jobs :
24
24
validate_pr :
25
25
runs-on : ubuntu-latest
26
+
27
+ permissions :
28
+ contents : read
29
+ pull-requests : write
30
+
26
31
steps :
27
32
- run : |
28
33
prTitle="$(gh api graphql -F owner=$OWNER -F name=$REPO -F pr_number=$PR_NUMBER -f query='
48
53
49
54
- name : Check for Validation Errors
50
55
if : env.VALIDATION_ERROR
51
- uses : actions/github-script@v7
56
+ uses : actions/github-script@v6
52
57
with :
53
58
script : |
54
59
core.setFailed('PR Formatting Validation Check Failed!')
Original file line number Diff line number Diff line change 27
27
28
28
jobs :
29
29
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
31
36
secrets : inherit
You can’t perform that action at this time.
0 commit comments