From 2d7db0439a47ef4d00b626281c69a7249ee7d522 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Tue, 7 Jul 2026 11:20:47 -0700 Subject: [PATCH] ci: auth private git deps for Dependabot (REPORTLAB_READ_PAT) --- .github/workflows/tapps-quality.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/tapps-quality.yml b/.github/workflows/tapps-quality.yml index c6335558..08d8b6d6 100644 --- a/.github/workflows/tapps-quality.yml +++ b/.github/workflows/tapps-quality.yml @@ -32,6 +32,14 @@ jobs: with: fetch-depth: 0 + - name: Auth private git deps + env: + REPORTLAB_READ_PAT: ${{ secrets.REPORTLAB_READ_PAT }} + run: | + if [ -n "$REPORTLAB_READ_PAT" ]; then + git config --global url."https://x-access-token:${REPORTLAB_READ_PAT}@github.com/".insteadOf "https://github.com/" + fi + - name: Set up uv uses: astral-sh/setup-uv@v7 with: @@ -59,6 +67,14 @@ jobs: - name: Checkout uses: actions/checkout@v7 + - name: Auth private git deps + env: + REPORTLAB_READ_PAT: ${{ secrets.REPORTLAB_READ_PAT }} + run: | + if [ -n "$REPORTLAB_READ_PAT" ]; then + git config --global url."https://x-access-token:${REPORTLAB_READ_PAT}@github.com/".insteadOf "https://github.com/" + fi + - name: Set up uv uses: astral-sh/setup-uv@v7 with: