From c76781f92b080430cd4b86012955c7bebb5d5ff4 Mon Sep 17 00:00:00 2001 From: Simon Brugman Date: Sun, 16 Jul 2023 21:49:41 +0200 Subject: [PATCH] rev --- .github/workflows/ci.yaml | 2 +- scripts/check_ecosystem.py | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6f9f5e15da89a9..48f532299a4348 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -137,7 +137,7 @@ jobs: runs-on: ubuntu-latest needs: cargo-test # Only runs on pull requests, since that is the only we way we can find the base version for comparison. - # if: github.event_name == 'pull_request' + if: github.event_name == 'pull_request' steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 diff --git a/scripts/check_ecosystem.py b/scripts/check_ecosystem.py index f700dab7913675..ed7c876811c65c 100755 --- a/scripts/check_ecosystem.py +++ b/scripts/check_ecosystem.py @@ -106,10 +106,18 @@ async def _get_commit(self: Self, checkout_dir: Path) -> str: REPOSITORIES: list[Repository] = [ - Repository("sdv-dev", "SDMetrics", "master", select="PD"), - Repository("google-research", "robustness_metrics", "master", select="PD"), - Repository("soft-matter", "trackpy", "master", select="PD"), - Repository("microsoft", "FLAML", "main", select="PD"), + Repository("apache", "airflow", "main", select="ALL"), + Repository("bokeh", "bokeh", "branch-3.2", select="ALL"), + Repository("pypa", "build", "main"), + Repository("pypa", "cibuildwheel", "main"), + Repository("pypa", "setuptools", "main"), + Repository("pypa", "pip", "main"), + Repository("python", "mypy", "master"), + Repository("DisnakeDev", "disnake", "master"), + Repository("scikit-build", "scikit-build", "main"), + Repository("scikit-build", "scikit-build-core", "main"), + Repository("python", "typeshed", "main", select="PYI"), + Repository("zulip", "zulip", "main", select="ALL"), ] SUMMARY_LINE_RE = re.compile(r"^(Found \d+ error.*)|(.*potentially fixable with.*)$")