From 50e5bbac501b5b7959331eebc7a35fe730bae539 Mon Sep 17 00:00:00 2001 From: ecrupper Date: Wed, 17 Jan 2024 14:03:42 -0600 Subject: [PATCH] fix(ci): title validator handle no parentheses + enforce whitespace --- .github/workflows/validate-pr-title.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/validate-pr-title.yml b/.github/workflows/validate-pr-title.yml index aa3588f64..3a7654391 100644 --- a/.github/workflows/validate-pr-title.yml +++ b/.github/workflows/validate-pr-title.yml @@ -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) \ No newline at end of file + - 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";