From 711fe8e0ca38641987fbb57248e8e8841634712a Mon Sep 17 00:00:00 2001 From: RogerHowellDfE <96429508+RogerHowellDfE@users.noreply.github.com> Date: Wed, 30 Oct 2024 22:22:11 +0000 Subject: [PATCH] disable publish for dependabot PRs --- .github/workflows/cicd.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 1101633..e5d0a17 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -70,6 +70,9 @@ jobs: needs: build_test_pack runs-on: ubuntu-latest + ## Do not attempt to publish the nuget package if this is a dependabot PR + if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' + steps: - name: Checkout uses: actions/checkout@v4