Skip to content

Commit 8476a68

Browse files
authored
Notify aspnet-build if a dependency PR has been stale for 1 business day (#62380)
* Notify aspnet-build if a dependency PR has been stale for 1 business day * Update .github/policies/resourceManagement.yml * Update resourceManagement.yml * Update resourceManagement.yml
1 parent 2f04fb0 commit 8476a68

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/policies/resourceManagement.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,45 @@ configuration:
168168
To make sure no conflicting changes have occurred, please rerun validation before merging. You can do this by leaving an `/azp run` comment here (requires commit rights), or by simply closing and reopening.
169169
- addLabel:
170170
label: pending-ci-rerun
171+
- description: '[Idle Issue Management] Tag aspnet-build on dependency PRs (non-weekend)'
172+
frequencies:
173+
- weekday:
174+
day: Tuesday
175+
time: 0:0
176+
- weekday:
177+
day: Wednesday
178+
time: 0:0
179+
- weekday:
180+
day: Thursday
181+
time: 0:0
182+
- weekday:
183+
day: Friday
184+
time: 0:0
185+
filters:
186+
- isPullRequest
187+
- isOpen
188+
- hasLabel:
189+
label: 'Type: Dependency Update :arrow_up_small:'
190+
- noActivitySince:
191+
days: 1
192+
actions:
193+
- addReply:
194+
reply: This dependency PR has had no activity for a full business day - @dotnet/aspnet-build please take a look if you are on build-ops.
195+
- description: '[Idle Issue Management] Tag aspnet-build on dependency PRs (weekend)'
196+
frequencies:
197+
- weekday:
198+
day: Monday
199+
time: 0:0
200+
filters:
201+
- isPullRequest
202+
- isOpen
203+
- hasLabel:
204+
label: 'Type: Dependency Update :arrow_up_small:'
205+
- noActivitySince:
206+
days: 3
207+
actions:
208+
- addReply:
209+
reply: This dependency PR has had no activity for a full business day - @dotnet/aspnet-build please take a look if you are on build-ops.
171210
eventResponderTasks:
172211
- if:
173212
- payloadType: Issue_Comment

0 commit comments

Comments
 (0)