Skip to content

Commit 896c176

Browse files
authored
Merge branch 'main' into merge/release/10.0-to-main
2 parents 07545ad + ecf3c2d commit 896c176

File tree

148 files changed

+7026
-1654
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+7026
-1654
lines changed

.azure/pipelines/ci-public.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -619,8 +619,6 @@ stages:
619619
agentOs: Windows
620620
isAzDOTestingJob: true
621621
timeoutInMinutes: 240
622-
# Temporarily disabled due to https://github.com/dotnet/aspnetcore/issues/63140
623-
condition: 'false'
624622
steps:
625623
- script: git submodule update --init
626624
displayName: Update submodules

.azuredevops/pull_request_template/branches/internal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Fixes #{bug number} (in this specific format)
4040

4141
----
4242

43-
## When servicing release/2.1
43+
## When servicing release/2.3
4444

4545
- [ ] Make necessary changes in eng/PatchConfig.props

.azuredevops/pull_request_template/branches/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ Fixes #{bug number} (in this specific format)
4646

4747
----
4848

49-
## When servicing release/2.1
49+
## When servicing release/2.3
5050

5151
- [ ] Make necessary changes in eng/PatchConfig.props

.github/PULL_REQUEST_TEMPLATE/servicing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Fixes #{bug number} (in this specific format)
4040

4141
----
4242

43-
## When servicing release/2.1
43+
## When servicing release/2.3
4444

4545
- [ ] Make necessary changes in eng/PatchConfig.props

.github/policies/resourceManagement.yml

Lines changed: 39 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -441,19 +441,30 @@ configuration:
441441
branch: main
442442
then:
443443
- addMilestone:
444-
milestone: 10.0-rc1
444+
milestone: 11.0-preview1
445445
description: '[Milestone Assignments] Assign Milestone to PRs merged to the `main` branch'
446446
- if:
447447
- payloadType: Pull_Request
448448
- isAction:
449449
action: Closed
450450
- targetsBranch:
451-
branch: release/10.0-preview7
451+
branch: release/10.0-rc1
452452
then:
453453
- removeMilestone
454454
- addMilestone:
455-
milestone: 10.0-preview7
456-
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/10.0-preview1 branch'
455+
milestone: 10.0-rc1
456+
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/10.0-rc1 branch'
457+
- if:
458+
- payloadType: Pull_Request
459+
- isAction:
460+
action: Closed
461+
- targetsBranch:
462+
branch: release/10.0
463+
then:
464+
- removeMilestone
465+
- addMilestone:
466+
milestone: 10.0-rc2
467+
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/10.0 branch'
457468
- if:
458469
- payloadType: Issues
459470
- isAction:
@@ -566,6 +577,25 @@ configuration:
566577
567578
Otherwise, please add `tell-mode` label.
568579
description: Add release/2.3 targeting PRs to the servicing project
580+
- if:
581+
- payloadType: Pull_Request
582+
- isAction:
583+
action: Opened
584+
- targetsBranch:
585+
branch: release/10.0
586+
- activitySenderHasPermission:
587+
permission: Read
588+
- not:
589+
isActivitySender:
590+
user: dotnet-maestro
591+
issueAuthor: False
592+
- not:
593+
isActivitySender:
594+
user: dotnet-maestro-bot
595+
issueAuthor: False
596+
then:
597+
- addLabel:
598+
label: servicing-consider
569599
- if:
570600
- payloadType: Pull_Request
571601
- labelAdded:
@@ -614,7 +644,7 @@ configuration:
614644
then:
615645
- removeMilestone
616646
- addMilestone:
617-
milestone: 9.0.9
647+
milestone: 9.0.10
618648
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/9.0 branch'
619649
- if:
620650
- payloadType: Pull_Request
@@ -625,7 +655,7 @@ configuration:
625655
then:
626656
- removeMilestone
627657
- addMilestone:
628-
milestone: 8.0.20
658+
milestone: 8.0.21
629659
description: '[Milestone Assignments] Assign Milestone to PRs merged to release/8.0 branch'
630660
- if:
631661
- payloadType: Issues
@@ -743,3 +773,6 @@ configuration:
743773
onFailure:
744774
onSuccess:
745775

776+
777+
778+

.github/workflows/backport.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
backport:
17-
uses: dotnet/arcade/.github/workflows/backport-base.yml@fac534d85b77789bd4daf2b4c916117f1ca381e7 # 2025-01-13
17+
uses: dotnet/arcade/.github/workflows/backport-base.yml@9c673b0425a6bcd87a5c7c63b46fe86d25edd4e7 # 2025-01-13
1818
with:
1919
pr_description_template: |
2020
Backport of #%source_pr_number% to %target_branch%
@@ -63,6 +63,6 @@ jobs:
6363
6464
----
6565
66-
## When servicing release/2.1
66+
## When servicing release/2.3
6767
6868
- [ ] Make necessary changes in eng/PatchConfig.props

.github/workflows/copilot-setup-steps.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,28 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
1818

19-
# Include PrepareForHelix to maximise what is downloaded here
19+
# Include PrepareForHelix to maximise what is downloaded here
2020
- name: Build solution
2121
env:
2222
# prevent GitInfo errors
2323
CI: false
2424
run: ./restore.sh
25+
26+
# For MCP servers like nuget's
27+
- name: Install .NET 10.x
28+
uses: actions/setup-dotnet@v5
29+
with:
30+
dotnet-version: |
31+
10.x
32+
dotnet-quality: preview
33+
34+
# for MCP servers
35+
- name: Install .NET 8.x
36+
uses: actions/setup-dotnet@v5
37+
with:
38+
dotnet-version: |
39+
8.x
40+
41+
# Diagnostics in the log
42+
- name: dotnet --info
43+
run: dotnet --info

.github/workflows/inter-branch-merge-flow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ on:
77
permissions:
88
contents: write
99
pull-requests: write
10+
issues: write
1011

1112
jobs:
1213
Merge:
13-
uses: dotnet/arcade/.github/workflows/inter-branch-merge-base.yml@fac534d85b77789bd4daf2b4c916117f1ca381e7 # 2024-06-24
14+
uses: dotnet/arcade/.github/workflows/inter-branch-merge-base.yml@9c673b0425a6bcd87a5c7c63b46fe86d25edd4e7 # 2024-06-24

.github/workflows/markdownlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
2020
- name: Use Node.js
21-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
21+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
2222
with:
2323
node-version: 16.x
2424
- name: Run Markdownlint

.github/workflows/update-jquery-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
2020

2121
- name: Setup Node.js
22-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
22+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
2323
with:
2424
node-version: '20.x'
2525

0 commit comments

Comments
 (0)