Skip to content

Commit

Permalink
Adding a new rule for automating repro request comments (#46094)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mkArtakMSFT authored Jan 13, 2023
1 parent c081374 commit e852e90
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/fabricbot.json
Original file line number Diff line number Diff line change
Expand Up @@ -3481,6 +3481,45 @@
}
]
}
},
{
"taskType": "trigger",
"capabilityId": "IssueResponder",
"subCapability": "IssuesOnlyResponder",
"version": "1.0",
"config": {
"conditions": {
"operator": "and",
"operands": [
{
"name": "labelAdded",
"parameters": {
"label": "Needs: Repro"
}
}
]
},
"eventType": "issue",
"eventNames": [
"issues",
"project_card"
],
"taskName": "[Needs: Repro] Request a minimal repro project",
"actions": [
{
"name": "addReply",
"parameters": {
"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."
}
},
{
"name": "addLabel",
"parameters": {
"label": "Needs: Author Feedback"
}
}
]
}
}
],
"userGroups": []
Expand Down

0 comments on commit e852e90

Please sign in to comment.