Skip to content

Commit 773bfca

Browse files
authored
Merge branch 'main' into merge/release/9.0.3xx-to-main
2 parents 5823cad + 1388b79 commit 773bfca

File tree

2 files changed

+48
-2
lines changed

2 files changed

+48
-2
lines changed

Diff for: .github/policies/breaking-change.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Automation in the `/.github/policies` folder is processed by the dotnet-policy-service app,
2+
# operated by the [microsoft1estools](https://github.com/microsoft1estools) team.
3+
# See https://github.com/apps/dotnet-policy-service for more info.
4+
id: breaking-change
5+
name: breaking-change
6+
description: When an issue or PR is labeled as a breaking change, add the label that a breaking change doc is needed, and comment with the breaking change process.
7+
owner:
8+
resource: repository
9+
disabled: false
10+
where:
11+
configuration:
12+
resourceManagementConfiguration:
13+
eventResponderTasks:
14+
- if:
15+
- payloadType: Issues
16+
- labelAdded:
17+
label: breaking-change
18+
then:
19+
- addReply:
20+
reply: >-
21+
Refer to the [.NET SDK breaking change guidelines](https://github.com/dotnet/sdk/blob/main/documentation/project-docs/breaking-change-guidelines.md#required-process-for-all-net-sdk-breaking-changes)
22+
description: Add breaking change doc instructions to issue
23+
- if:
24+
- payloadType: Pull_Request
25+
- labelAdded:
26+
label: breaking-change
27+
then:
28+
- addLabel:
29+
label: needs-breaking-change-doc-created
30+
- addReply:
31+
reply: >-
32+
Added `needs-breaking-change-doc-created` label because this PR has the `breaking-change` label.
33+
34+
35+
When you commit this breaking change:
36+
37+
38+
1. [ ] Create and link to this PR and the issue a matching issue in the dotnet/docs repo using the [breaking change documentation template](https://aka.ms/dotnet/docs/new-breaking-change-issue), then remove this `needs-breaking-change-doc-created` label.
39+
40+
2. [ ] Ask a committer to mail the `.NET SDK Breaking Change Notification` email list.
41+
42+
43+
You can refer to the [.NET SDK breaking change guidelines](https://github.com/dotnet/sdk/blob/main/documentation/project-docs/breaking-change-guidelines.md)
44+
description: Add breaking change instructions to PR.
45+
onFailure:
46+
onSuccess:

Diff for: eng/Version.Details.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<SourceBuild RepoName="source-build-externals" ManagedOnly="true" />
99
</Dependency>
1010
<!-- Intermediate is necessary for source build. -->
11-
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="10.0.621401">
11+
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="10.0.621501">
1212
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>
13-
<Sha>0fb2d0d836dffe32b32e362e86f0dccd6f40bee8</Sha>
13+
<Sha>432b22e3cdaf69c011358a44e61959769b2f607c</Sha>
1414
<SourceBuild RepoName="source-build-reference-packages" ManagedOnly="true" />
1515
</Dependency>
1616
<Dependency Name="System.CommandLine" Version="2.0.0-beta5.25208.1">

0 commit comments

Comments
 (0)