From 53ad66b49d276243fd0087783c3723288283f839 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mete=20Fatih=20C=C4=B1r=C4=B1t?= Date: Mon, 30 Dec 2024 19:02:26 +0300 Subject: [PATCH] fix(require-label): output the result (#332) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: M. Fatih Cırıt --- .github/workflows/require-label.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/require-label.yaml b/.github/workflows/require-label.yaml index 529ea7ef..ca3a10d3 100644 --- a/.github/workflows/require-label.yaml +++ b/.github/workflows/require-label.yaml @@ -9,12 +9,13 @@ on: outputs: result: value: ${{ jobs.require-label.outputs.result }} + description: Returns 'true' if the label is present, empty otherwise (cannot return 'false') jobs: require-label: runs-on: ubuntu-latest outputs: - result: ${{ steps.require-label.outputs.result }} + result: ${{ steps.check-for-label.outputs.result }} steps: - name: Check if label is present id: check-for-label @@ -28,7 +29,6 @@ jobs: if: steps.check-for-label.outputs.result != 'true' run: | echo "::error::❌ The label is missing: '${{ inputs.label }}'" - echo "result=false" >> $GITHUB_OUTPUT echo "## 🚨 Missing Required Label" >> $GITHUB_STEP_SUMMARY echo "" >> $GITHUB_STEP_SUMMARY echo "💡 Please add the following label to the pull request to proceed:" >> $GITHUB_STEP_SUMMARY