Skip to content

Commit

Permalink
fix(ci): title validator handle no parentheses + enforce whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ecrupper committed Jan 17, 2024
1 parent e3fc496 commit 50e5bba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/validate-pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ name: validate PR title
# trigger on pull_request events of the opened & edited type.
on:
pull_request:
types: [ opened, synchronize, edited, reopened ]
types: [opened, synchronize, edited, reopened]

# pipeline to execute
jobs:
validate:
runs-on: ubuntu-latest

steps:
- name: validate title
run: |
echo "${{ github.event.pull_request.title }}" | grep -Eq '^(feat|fix|chore|refactor|enhance|test|docs)\(.*\):.*$' && (echo "Pass"; exit 0) || (echo "Incorrect Format. Please see https://go-vela.github.io/docs/community/contributing_guidelines/#development-workflow"; exit 1)
- name: validate title
run: |
echo "${{ github.event.pull_request.title }}" | grep -Eq '^(feat|fix|chore|refactor|enhance|test|docs)(\(.*\)|):\s.+$' && (echo "Pass"; exit 0) || (echo "Incorrect Format. Please see https://go-vela.github.io/docs/community/contributing_guidelines/#development-workflow";

0 comments on commit 50e5bba

Please sign in to comment.