From 82c1562f8240b4a92b57cb29bb9fce7ed716af03 Mon Sep 17 00:00:00 2001 From: Jon Ayers Date: Fri, 10 May 2024 13:14:03 -0500 Subject: [PATCH] fix: skip license review for dependabot (#13239) --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f35be17942..49ad712b7d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -910,7 +910,7 @@ jobs: # This action is not intended to do a vulnerability check since that is handled by a separate action. dependency-license-review: runs-on: ubuntu-latest - if: github.ref != 'refs/heads/main' + if: github.ref != 'refs/heads/main' && github.actor != 'dependabot[bot]' steps: - name: "Checkout Repository" uses: actions/checkout@v4