diff --git a/.github/workflows/detection-testing.yml b/.github/workflows/detection-testing.yml index d63147a76e..ef8bce5826 100644 --- a/.github/workflows/detection-testing.yml +++ b/.github/workflows/detection-testing.yml @@ -28,12 +28,20 @@ jobs: echo "PASS: Not a tagged release" exit 0 fi + + quit-for-dependabot: + runs-on: ubuntu-latest + if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' + steps: + - name: "Placeholder" + run: | + echo "yes it ran" + detection-testing: runs-on: ubuntu-latest environment: Detection-Testing-Approval - needs: [validate-tag-if-present] - if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' + needs: [validate-tag-if-present, quit-for-dependabot] steps: - name: Checkout Repo