From 14c5d288a8fe6db35feff653b4863bbd3a6defe7 Mon Sep 17 00:00:00 2001 From: TShapinsky Date: Thu, 20 Jun 2024 13:11:05 -0600 Subject: [PATCH] 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