From 633e510f238c25df2beb3d99c80f26b3e36fcfe0 Mon Sep 17 00:00:00 2001 From: Luke Kysow <1034429+lkysow@users.noreply.github.com> Date: Fri, 25 Mar 2022 18:40:51 -0700 Subject: [PATCH] Fix logic for website checker (#12627) Workflow should run when no docs/cherry-pick label && no pr/docs-label --- .github/workflows/website-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/website-checker.yml b/.github/workflows/website-checker.yml index 8e4360b967..17d69dc8ca 100644 --- a/.github/workflows/website-checker.yml +++ b/.github/workflows/website-checker.yml @@ -23,7 +23,7 @@ jobs: website-check: # If there's already a `type/docs-cherrypick` label or an explicit `pr/no-docs` label, we ignore this check if: >- - !contains(github.event.pull_request.labels.*.name, 'type/docs-cherrypick') || + !contains(github.event.pull_request.labels.*.name, 'type/docs-cherrypick') && !contains(github.event.pull_request.labels.*.name, 'pr/no-docs') runs-on: ubuntu-latest