Add some additional projects to the ecosystem CI (#6542)

Adding five new projects. Some of these have seen issues filed, the
others, I just tabbed through our dependency pain and looked for some
reasonably-large projects that enabled rules beyond the default rule
set.
This commit is contained in:
Charlie Marsh 2023-08-13 17:15:54 -04:00 committed by GitHub
parent 446ceed1ad
commit eb24f5a0b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,6 +109,10 @@ REPOSITORIES: list[Repository] = [
Repository("DisnakeDev", "disnake", "master"),
Repository("apache", "airflow", "main", select="ALL"),
Repository("bokeh", "bokeh", "branch-3.3", select="ALL"),
Repository("commaai", "openpilot", "master"),
Repository("freedomofpress", "securedrop", "develop"),
Repository("ibis-project", "ibis", "master"),
Repository("jrnl-org", "jrnl", "develop"),
Repository("pypa", "build", "main"),
Repository("pypa", "cibuildwheel", "main"),
Repository("pypa", "pip", "main"),
@ -118,6 +122,7 @@ REPOSITORIES: list[Repository] = [
Repository("python-poetry", "poetry", "master"),
Repository("scikit-build", "scikit-build", "main"),
Repository("scikit-build", "scikit-build-core", "main"),
Repository("sphinx-doc", "sphinx", "master"),
Repository("tiangolo", "fastapi", "master"),
Repository("zulip", "zulip", "main", select="ALL"),
]
@ -301,7 +306,6 @@ DIFF_LINE_RE = re.compile(
r"^(?P<pre>[+-]) (?P<inner>(?P<path>[^:]+):(?P<lnum>\d+):\d+:) (?P<post>.*)$",
)
T = TypeVar("T")