From e64d67e4d927b01002efd1f0cec139a1c9046459 Mon Sep 17 00:00:00 2001 From: Tobias Shapinsky Date: Thu, 20 Jun 2024 13:37:50 -0600 Subject: [PATCH] Check for dependabot before triggering publish action (#512) check for dependabot before triggering publish action --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19ded522..a5619950 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -249,6 +249,7 @@ jobs: publish: needs: [pre-commit, unit-tests, simulation-tests, integration-tests, integration-tests-historian] runs-on: ubuntu-latest + if: github.actor != 'dependabot[bot]' steps: - name: Checkout code uses: actions/checkout@v4