From c3a09b0b5d29656ae6679339d400cfd9c07dfc65 Mon Sep 17 00:00:00 2001 From: Barry Gordon Date: Wed, 20 Apr 2022 11:48:55 +0100 Subject: [PATCH] Fix invalid condition on dependabot builds --- .github/workflows/dependabot-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-build.yml b/.github/workflows/dependabot-build.yml index 8592624..e688388 100644 --- a/.github/workflows/dependabot-build.yml +++ b/.github/workflows/dependabot-build.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest needs: [fetch-dependabot-metadata] # We only need to build the dist/ folder if the PR relates to Docker or a production npm dependency, otherwise we don't expect changes. - if: needs.fetch-dependabot-metadata.output.package-ecosystem == 'docker' || ( needs.fetch-dependabot-metadata.output.package-ecosystem == 'npm_and_yarn' && needs.fetch-dependabot-metadata.outputs.dependency-type == 'direct:production' ) + if: needs.fetch-dependabot-metadata.outputs.package-ecosystem == 'docker' || ( needs.fetch-dependabot-metadata.outputs.package-ecosystem == 'npm_and_yarn' && needs.fetch-dependabot-metadata.outputs.dependency-type == 'direct:production' ) steps: # Check out using a PAT so any pushed changes will trigger checkruns - uses: actions/checkout@v3