Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions .github/policies/resourceManagement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,34 +277,6 @@ configuration:
then:
- closeIssue

- description: Add "untriaged" label on new issues
triggerOnOwnActions: false
if:
- payloadType: Issues
- not:
hasLabel:
label: untriaged
- and:
- isAction:
action: Opened
then:
- addLabel:
label: untriaged

- description: Remove "untriaged" label from issues when closed or added to a milestone
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we clear out all untriaged labels on issues in that case. I've got a script we can run to match the status field with this tag that we might want to run before. Noticed a few issues in the roslyn repo where this somehow doesn't match.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would rather not do that. Such issue manipulation triggers notifications for all subscribed people which I don't think is worth it in this case.

triggerOnOwnActions: false
if:
- payloadType: Issues
- or:
- isAction:
action: Closed
- isPartOfAnyMilestone
- hasLabel:
label: untriaged
then:
- removeLabel:
label: untriaged

- description: Add breaking change doc instructions to issue
if:
- payloadType: Issues
Expand Down