From 170b96c2fea5fdcea7aa287757eeb2e11e15974d Mon Sep 17 00:00:00 2001 From: Andre Wiggins Date: Mon, 25 Jan 2021 01:59:25 -0800 Subject: [PATCH] Fix pr-reporter condition It seems the original did not properly work. This update should fix it. --- .github/workflows/pr-reporter.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/pr-reporter.yml b/.github/workflows/pr-reporter.yml index f01f699c15..b5e2f1ba90 100644 --- a/.github/workflows/pr-reporter.yml +++ b/.github/workflows/pr-reporter.yml @@ -30,9 +30,7 @@ jobs: runs-on: ubuntu-latest # Only run this job if the event action was "completed" and the triggering # workflow_run was successful - if: > - ${{ github.event.action == 'completed' && - github.event.workflow_run.conclusion == 'success' }} + if: ${{ github.event.action == 'completed' && github.event.workflow_run.conclusion == 'success' }} steps: # Download the artifact from the triggering workflow that contains the # Tachometer results to report