From 8b91bf58f2d678fb78c4cb0b2b73b4900d3710b3 Mon Sep 17 00:00:00 2001 From: alaviss Date: Wed, 31 Jan 2024 16:12:37 -0600 Subject: [PATCH] test: fix filter job output (#14) Previously this referred to the wrong attribute, causing the skip output to not propagate correctly to next jobs --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 05f3305..669e63b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: name: Check if tests should be run runs-on: ubuntu-latest outputs: - should-skip: ${{ steps.filter.should_skip }} + should-skip: ${{ steps.filter.outputs.should_skip }} steps: - uses: fkirc/skip-duplicate-actions@v5.3.1