From 1332c941cd5659db309863d5220362f8151882bf Mon Sep 17 00:00:00 2001 From: Laurents Meyer Date: Fri, 27 Oct 2023 01:48:38 +0200 Subject: [PATCH] Fix auto commit handling for PR cases where the green tests files have not changed. --- .github/workflows/{autocommit.yml => auto_commit.yml} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{autocommit.yml => auto_commit.yml} (94%) diff --git a/.github/workflows/autocommit.yml b/.github/workflows/auto_commit.yml similarity index 94% rename from .github/workflows/autocommit.yml rename to .github/workflows/auto_commit.yml index 02ade0c..50818c9 100644 --- a/.github/workflows/autocommit.yml +++ b/.github/workflows/auto_commit.yml @@ -46,11 +46,11 @@ jobs: core.setOutput('hasGreenTestsArtifacts', 'true'); } - name: 'Download artifact' - if: steps.DownloadGreenTests.output.hasGreenTestsArtifacts == 'true' + if: steps.DownloadGreenTests.outputs.hasGreenTestsArtifacts == 'true' shell: pwsh run: Expand-Archive green-tests.zip -DestinationPath './test/EFCore.Jet.FunctionalTests/GreenTests' -Force - name: 'Commit Green Tests' - if: steps.DownloadGreenTests.output.hasGreenTestsArtifacts == 'true' + if: steps.DownloadGreenTests.outputs.hasGreenTestsArtifacts == 'true' shell: pwsh run: | if ((git status -s).Length -gt 0) {