-
Notifications
You must be signed in to change notification settings - Fork 8
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: remove language:Go from search query #58
Conversation
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.
From 429 to 434 results without language:Go.
To see all repository without language:Go :
https://github.com/search?q=topic%3Atraefik-plugin+archived%3Afalse+is%3Apublic+-language%3AGo+&type=repositories
I suggest to
- remove
traefik-plugin
topic fromtraefik/seo-doc
- filter out
deas/teectl
andGDGVIT/securum-exire
which are not plugins
I suggest not removing the constraints but creating a specific label and a second search query. |
@ldez thanks for your feedback. I have added a new condition to skipped yaegi plugins that are not developed in Go. It avoid to create a second query. I don't see the benefit to create a second search query and a new label |
@@ -273,6 +273,11 @@ func (s *Scrapper) process(ctx context.Context, repository *github.Repository) ( | |||
} | |||
|
|||
default: | |||
if repository.GetLanguage() != "Go" { | |||
log.Info().Str("repo_name", repository.GetFullName()).Msg("Yaegi plugin is not developed in Go") |
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.
log.Info().Str("repo_name", repository.GetFullName()).Msg("Yaegi plugin is not developed in Go") | |
log.Info().Str("repo_name", repository.GetFullName()).Msg("This plugin is not developed in Go") |
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 have a little suggestion to improve log.
Otherwise, LGTM.
Closed in favor of #66 |
Description
This Pr removes the
language:Go
from query searchFixes #57
Related to: traefik/plugindemowasm#6