From 7d2563880afd61351d3462367df35d224df4cac2 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Tue, 10 Feb 2026 09:31:50 -0800 Subject: [PATCH] show dependency tree in weekly uv lock job (#37146) --- .github/workflows/repo-maintenance.yaml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/repo-maintenance.yaml b/.github/workflows/repo-maintenance.yaml index f88db3eaf..ec361536d 100644 --- a/.github/workflows/repo-maintenance.yaml +++ b/.github/workflows/repo-maintenance.yaml @@ -47,6 +47,12 @@ jobs: python3 -m ensurepip --upgrade pip3 install uv uv lock --upgrade + - name: uv pip tree + id: pip_tree + run: | + echo 'PIP_TREE<> $GITHUB_OUTPUT + uv pip tree >> $GITHUB_OUTPUT + echo 'EOF' >> $GITHUB_OUTPUT - name: bump submodules run: | git config --global --add safe.directory '*' @@ -68,5 +74,10 @@ jobs: branch: auto-package-updates base: master delete-branch: true - body: 'Automatic PR from repo-maintenance -> package_updates' + body: | + Automatic PR from repo-maintenance -> package_updates + + ``` + ${{ steps.pip_tree.outputs.PIP_TREE }} + ``` labels: bot