Skip to content

🌱 Bump github.com/onsi/gomega from 1.36.2 to 1.36.3 #5939

🌱 Bump github.com/onsi/gomega from 1.36.2 to 1.36.3

🌱 Bump github.com/onsi/gomega from 1.36.2 to 1.36.3 #5939

Workflow file for this run

name: "PR Title Verifier"
on:
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Validate PR Title Format
run: |
TITLE="${{ github.event.pull_request.title }}"
if [[ -z "$TITLE" ]]; then
echo "Error: PR title cannot be empty."
exit 1
fi
if ! [[ "$TITLE" =~ ^($'\u26A0'|$'\u2728'|$'\U0001F41B'|$'\U0001F4D6'|$'\U0001F680'|$'\U0001F331') ]]; then
echo "Error: Invalid PR title format."
echo "Your PR title must start with one of the following indicators:"
echo "- Breaking change: ⚠ (U+26A0)"
echo "- Non-breaking feature: ✨ (U+2728)"
echo "- Patch fix: 🐛 (U+1F41B)"
echo "- Docs: 📖 (U+1F4D6)"
echo "- Release: 🚀 (U+1F680)"
echo "- Infra/Tests/Other: 🌱 (U+1F331)"
exit 1
fi
echo "PR title is valid: '$TITLE'"