Skip to content

build(deps): bump google.golang.org/grpc from 1.73.0 to 1.77.0 in /hodometer #3288

build(deps): bump google.golang.org/grpc from 1.73.0 to 1.77.0 in /hodometer

build(deps): bump google.golang.org/grpc from 1.73.0 to 1.77.0 in /hodometer #3288

Workflow file for this run

name: lint-pr-title
on:
pull_request:
branches:
- v2
types:
- opened
- reopened
- edited
jobs:
conventional-commit:
if: github.repository == 'SeldonIO/seldon-core' # Do not run this on forks.
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- name: Check PR title matches Conventional Commit format
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: |
PATTERN="^(build|ci|docs|feat|fix|refactor|revert|test)\([^)]+\): .+$"
if [[ $PR_TITLE =~ $PATTERN ]]; then
echo "✅ PR title is valid!"
else
echo "❌ PR title does not match required format!"
echo ""
echo "Required: type(scope): description"
echo "Types: build, ci, docs, feat, fix, refactor, revert, test"
echo ""
echo "Examples:"
echo " feat(auth): add login functionality"
echo " fix(api): resolve timeout issue"
echo " docs(readme): update installation guide"
exit 1
fi