-
-
Notifications
You must be signed in to change notification settings - Fork 178
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
Fix checking maintainers for teams #1932
base: main
Are you sure you want to change the base?
Conversation
@@ -1181,8 +1181,24 @@ def run_conda_forge_specific(meta, recipe_dir, lints, hints): | |||
# Check if all maintainers have either commented or are the PR author |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seeing this code now, I wonder if we should also get the emoji reactions in the comments Sometimes folks just leave a 👍 as the confirmation.
I think this could work (for the block above):
commenters.update(
{
reaction.user.login
for comment in issue_comments
for reaction in issue.get_reactions()
if reaction.content in ("+1", "heart", "rocket", "hooray")
}
)
Refs:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that's a good idea! My memory is a little vague but I think the problem during implementation was that these features weren't available yet.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jaimergp do you mind sending a PR?
This would resolve #1817. 👍 |
Checklist
news
entry