From 418f6d7a2427023d22c77f7348b4c4eda50df76e Mon Sep 17 00:00:00 2001 From: Christopher Tannum Date: Tue, 27 Jun 2023 15:04:11 +0200 Subject: [PATCH] test --- .github/workflows/react-components-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/react-components-ci.yml b/.github/workflows/react-components-ci.yml index 42633846bda..27a6f684cd4 100644 --- a/.github/workflows/react-components-ci.yml +++ b/.github/workflows/react-components-ci.yml @@ -11,20 +11,20 @@ jobs: permissions: pull-requests: read outputs: - react-components: ${{ steps.filter.outputs.reactComponents }} + react-components: ${{ steps.filter.outputs.react-components }} steps: # For pull requests it's not necessary to checkout the code - uses: dorny/paths-filter@v2 id: filter with: filters: | - reactComponents: + react-components: - 'react-components/**' react-components-ci: needs: changes runs-on: ubuntu-latest - if: ${{ needs.changes.outputs.reactComponents == 'true' }} + if: ${{ needs.changes.outputs.react-components == 'true' }} steps: - uses: actions/checkout@v3 with: