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 ability to mute comments from certain users #2672

Closed
fregante opened this issue Jan 7, 2020 · 1 comment
Closed

Add ability to mute comments from certain users #2672

fregante opened this issue Jan 7, 2020 · 1 comment

Comments

@fregante
Copy link
Member

fregante commented Jan 7, 2020

The feature existed but was broken. More info found in #2298

Removed in b276f2a, you can probably revert the commit and rewrite the hiding behavior as suggested.

Originally asked in #1629

There are certain users that do no harm, so I don't want to block them, but they generally produce low-quality comments and I just don't want to see it. Would be nice to be able to hide comments from them. This is different from blocking a user in that they won't know that I'm muting them and it would work on other people's repo too.

It would be a text field in the settings that accepts a list of usernames.

@fregante
Copy link
Member Author

fregante commented Aug 9, 2022

Extracted from #4808 (comment) for quick reference.


Now this feature can no longer be implemented in Refined GitHub because it essentially needs "options" to show the list of collapsed user, which we don't do

The good news is that in Safari 15.4+ and Chrome 105+ you will be able to write your own CSS to hide/collapse bot comments. I will very likely use this myself.

Example CSS:

.timeline-comment:not(:hover):has(.author:is(
	[href="/apps/github-actions"],
	[href="/codecov-commenter"]
)) {
	overflow: hidden;
	height: 100px;
	opacity: 50%;
}

text

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

1 participant