Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 'remove needs info' condition to issue updater #68

Merged
merged 1 commit into from
Dec 19, 2024
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
34 changes: 34 additions & 0 deletions .github/policies/resourceManagement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,40 @@ configuration:
- addReply:
reply: Hi @${issueAuthor}. We have added the "needs reproduction" label to this issue, which indicates that we cannot take further action. This issue will be closed automatically in 5 days if we do not hear back from you by then - please feel free to re-open it if you come back to this issue after that time.
description: Add comment when 'needs reproduction' is applied to issue
- if:
- payloadType: Issue_Comment
- isAction:
action: Created
- isOpen
- hasLabel:
label: needs info
- not:
activitySenderHasPermission:
permission: Admin
- not:
activitySenderHasPermission:
permission: Write
then:
- removeLabel:
label: needs info
description: Remove needs info label
- if:
- payloadType: Issue_Comment
- isAction:
action: Created
- isOpen
- hasLabel:
label: needs reproduction
- not:
activitySenderHasPermission:
permission: Admin
- not:
activitySenderHasPermission:
permission: Write
then:
- removeLabel:
label: needs reproduction
description: Remove needs reproduction label
- if:
- payloadType: Issues
- hasLabel:
Expand Down
Loading