You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 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.
0 commit comments