From d366aa178663ce5e29005b5d3b53f3a313a229bd Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Wed, 19 Jun 2024 12:16:29 +0200 Subject: [PATCH] ci: Fix check for external contributors --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f2eadf738a54..5e100df939ad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -235,7 +235,7 @@ jobs: runs-on: ubuntu-20.04 if: | github.event_name == 'pull_request' - && (github.action == 'opened' || github.action == 'reopened') + && (github.event.action == 'opened' || github.event.action == 'reopened') && github.event.pull_request.author_association != 'COLLABORATOR' && github.event.pull_request.author_association != 'MEMBER' && github.event.pull_request.author_association != 'OWNER'