From 3ef3c81599ebe77e179a99da31546adf98f4a858 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Tue, 3 Nov 2020 15:18:14 -0500 Subject: [PATCH] chore: Only trigger first responder for internal (#915) The `||` for the closed cause this to trigger on public repo --- .github/workflows/first-responder-docs-content.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/first-responder-docs-content.yml b/.github/workflows/first-responder-docs-content.yml index 179f6d1060..944368dafc 100644 --- a/.github/workflows/first-responder-docs-content.yml +++ b/.github/workflows/first-responder-docs-content.yml @@ -53,7 +53,7 @@ jobs: first-responder-remove-pr: name: Remove PR from FR project board - if: github.repository == 'github/docs-internal' && (github.event.label.name == 'docs-content-fr' && github.event.action == 'unlabeled') || github.event.action == 'closed' + if: github.repository == 'github/docs-internal' && ((github.event.label.name == 'docs-content-fr' && github.event.action == 'unlabeled') || github.event.action == 'closed') runs-on: ubuntu-latest steps: