Skip to content

Commit 7c8a236

Browse files
authored
Merge branch 'main' into merge/release/10.0-to-main
2 parents 7c18d3b + e685341 commit 7c8a236

File tree

44 files changed

+657
-429
lines changed

Some content is hidden

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

44 files changed

+657
-429
lines changed

.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: 36 additions & 4 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:
@@ -743,3 +773,5 @@ configuration:
743773
onFailure:
744774
onSuccess:
745775

776+
777+

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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/inter-branch-merge-flow.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
permissions:
88
contents: write
99
pull-requests: write
10+
issues: write
1011

1112
jobs:
1213
Merge:

eng/Version.Details.props

Lines changed: 92 additions & 92 deletions
Large diffs are not rendered by default.

eng/Version.Details.xml

Lines changed: 185 additions & 185 deletions
Large diffs are not rendered by default.

eng/common/SetupNugetSources.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
# displayName: Setup Private Feeds Credentials
1111
# condition: eq(variables['Agent.OS'], 'Windows_NT')
1212
# inputs:
13-
# filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.ps1
14-
# arguments: -ConfigFile $(Build.SourcesDirectory)/NuGet.config -Password $Env:Token
13+
# filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.ps1
14+
# arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config -Password $Env:Token
1515
# env:
1616
# Token: $(dn-bot-dnceng-artifact-feeds-rw)
1717
#

eng/common/SetupNugetSources.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# - task: Bash@3
1212
# displayName: Setup Internal Feeds
1313
# inputs:
14-
# filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh
15-
# arguments: $(Build.SourcesDirectory)/NuGet.config
14+
# filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh
15+
# arguments: $(System.DefaultWorkingDirectory)/NuGet.config
1616
# condition: ne(variables['Agent.OS'], 'Windows_NT')
1717
# - task: NuGetAuthenticate@1
1818
#

0 commit comments

Comments
 (0)