Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(require-label): output the result #332

Merged
merged 1 commit into from
Dec 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading