From b76dc6e93750bfa6fafb9a8002a5098bf54e8cad Mon Sep 17 00:00:00 2001 From: Joel Mut Date: Wed, 15 Jan 2025 11:45:50 +0000 Subject: [PATCH] Fix create parity issue github action --- .github/workflows/create-botbuilder-parity-issues.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-botbuilder-parity-issues.yml b/.github/workflows/create-botbuilder-parity-issues.yml index c24fdcf33f..a315ec0508 100644 --- a/.github/workflows/create-botbuilder-parity-issues.yml +++ b/.github/workflows/create-botbuilder-parity-issues.yml @@ -55,11 +55,11 @@ jobs: steps: - run: echo "::notice ::Creating issue for ${{ matrix.repo }}" if: | - contains(github.event.pull_request.labels.*.name, 'Automation: Parity all') == true || contains(github.event.pull_request.labels.*.name, format('Automation: parity with {0}', matrix.repo)) == true + contains(github.event.pull_request.labels.*.name, 'Automation: Parity all') == true || contains(github.event.pull_request.labels.*.name, format('Automation: Parity with {0}', matrix.repo)) == true - uses: joshgummersall/dispatch-workflow@main if: | - contains(github.event.pull_request.labels.*.name, 'Automation: Parity all') == true || contains(github.event.pull_request.labels.*.name, format('Automation: parity with {0}', matrix.repo)) == true + contains(github.event.pull_request.labels.*.name, 'Automation: Parity all') == true || contains(github.event.pull_request.labels.*.name, format('Automation: Parity with {0}', matrix.repo)) == true with: encoded: "true" inputs: |