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
Adding a new rule for automating repro request comments (#46094)
The message here is what we use today as a canned response when requesting a repro project.
This task will simply / automate this so during triage we simply stick the label when a repro is needed.
Copy file name to clipboardExpand all lines: .github/fabricbot.json
+39
Original file line number
Diff line number
Diff line change
@@ -3481,6 +3481,45 @@
3481
3481
}
3482
3482
]
3483
3483
}
3484
+
},
3485
+
{
3486
+
"taskType": "trigger",
3487
+
"capabilityId": "IssueResponder",
3488
+
"subCapability": "IssuesOnlyResponder",
3489
+
"version": "1.0",
3490
+
"config": {
3491
+
"conditions": {
3492
+
"operator": "and",
3493
+
"operands": [
3494
+
{
3495
+
"name": "labelAdded",
3496
+
"parameters": {
3497
+
"label": "Needs: Repro"
3498
+
}
3499
+
}
3500
+
]
3501
+
},
3502
+
"eventType": "issue",
3503
+
"eventNames": [
3504
+
"issues",
3505
+
"project_card"
3506
+
],
3507
+
"taskName": "[Needs: Repro] Request a minimal repro project",
3508
+
"actions": [
3509
+
{
3510
+
"name": "addReply",
3511
+
"parameters": {
3512
+
"comment": "Thank you for filing this issue. In order for us to investigate this issue, please provide [a minimalistic repro project](https://github.com/dotnet/aspnetcore/blob/main/docs/repro.md) that illustrates the problem."
0 commit comments