Skip to content

NEW: @W-15652620@ - Prepare repo with standard/required files #17

NEW: @W-15652620@ - Prepare repo with standard/required files

NEW: @W-15652620@ - Prepare repo with standard/required files #17

Workflow file for this run

name: validate-pr
on:
pull_request:
types: [edited, opened, reopened, synchronize]
jobs:
validate_pr_title:
runs-on: ubuntu-latest
steps:
- name: Validate PR Title
if: github.base_ref == 'main'
run: |
title="${{ github.event.pull_request.title }}"
if [[ "$title" =~ "^(?i)(FIX|CHANGE|NEW)[ ]*\\([^()]+\\)[ :]*@W-\\d{8,9}@[ :-]+.+" ]]; then
echo "PR title of '$title' is valid."
else
echo "::error::Invalid PR title of '$title'. Please following the format: FIX|CHANGE|NEW (__) @W-XXXXXXXX@ Summary"
exit 1
fi