From 202b2821f52fd127d38886f6f6488c109354cf51 Mon Sep 17 00:00:00 2001 From: Jon Ayers Date: Fri, 10 May 2024 17:47:25 +0000 Subject: [PATCH] fix: skip license review for dependabot --- .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 f35be17942aa0..49ad712b7dee4 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