From 9028dac29ce4a894a5554936c3efd6df74d0ad23 Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Fri, 8 Dec 2023 10:54:56 -0500 Subject: [PATCH] Ignore dependabot PRs --- .github/workflows/cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 78c87cb..20413d2 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -28,9 +28,9 @@ jobs: # Ignore Dependabot pull requests. if: | - (github.event_name == 'workflow_dispatch' || - github.event.pull_request.merged == true) && - github.actor != 'dependabot[bot]' + github.event_name == 'workflow_dispatch' || + (github.event.pull_request.merged == true && + github.event.pull_request.user.login != 'dependabot[bot]') outputs: # Semantic version to use for tagging container images.