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

ci(require-label): add new reusable workflow #331

Merged
merged 7 commits into from
Dec 24, 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
37 changes: 37 additions & 0 deletions .github/workflows/require-label.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: require-label

on:
workflow_call:
inputs:
label:
required: true
type: string
outputs:
result:
value: ${{ jobs.require-label.outputs.result }}

jobs:
require-label:
runs-on: ubuntu-latest
outputs:
result: ${{ steps.require-label.outputs.result }}
steps:
- name: Check if label is present
id: check-for-label
if: contains(github.event.pull_request.labels.*.name, inputs.label)
run: |
echo "result=true" >> $GITHUB_OUTPUT
echo "::notice::✅ The label is present: '${{ inputs.label }}'"
shell: bash

- name: Fail if label is not present
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
echo "▶️ **${{ inputs.label }}**" >> $GITHUB_STEP_SUMMARY
exit 1
shell: bash
Loading