Skip to content

Commit

Permalink
assign issue when Test-Proxy label is used (#5382)
Browse files Browse the repository at this point in the history
assign issue when Test-Proxy label is used via Fabric Bot

---------

Co-authored-by: Mario Guerra <[email protected]>
  • Loading branch information
mario-guerra and mario-guerra authored Feb 9, 2023
1 parent b1668d9 commit de045af
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion .github/fabricbot.json
Original file line number Diff line number Diff line change
Expand Up @@ -558,5 +558,42 @@
}
]
}
},
{
"taskType": "trigger",
"capabilityId": "IssueResponder",
"subCapability": "IssuesOnlyResponder",
"version": "1.0",
"config": {
"conditions": {
"operator": "and",
"operands": [
{
"name": "labelAdded",
"parameters": {
"label": "Test-Proxy"
}
}
]
},
"eventType": "issue",
"eventNames": [
"issues",
"project_card"
],
"taskName": "Assign issue on use of Test-Proxy label",
"actions": [
{
"name": "assignToUser",
"parameters": {
"groupId": "",
"user": "mario-guerra"
}
}
],
"dangerZone": {
"respondToBotActions": false
}
}
}
]
]

0 comments on commit de045af

Please sign in to comment.