Skip to content

Commit

Permalink
fix(require-label): output the result (#332)
Browse files Browse the repository at this point in the history
Signed-off-by: M. Fatih Cırıt <[email protected]>
  • Loading branch information
xmfcx authored Dec 30, 2024
1 parent 7d05dce commit 53ad66b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/require-label.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 53ad66b

Please sign in to comment.