mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-28 16:07:46 +00:00
7ff293f3f8
Release-As: 0.0.1
23 lines
703 B
YAML
23 lines
703 B
YAML
concurrency:
|
|
cancel-in-progress: true
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
jobs:
|
|
lint-title:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check PR Title for Conventional Commit Format
|
|
run: |
|
|
if ! echo "${{ github.event.pull_request.title }}" | grep -Pq '^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test|Release-As)(\(\w+\))?!?:\s.*'; then
|
|
echo 'The title does not conform to the Conventional Commit.'
|
|
echo 'Please refer to "https://www.conventionalcommits.org/"'
|
|
exit 1
|
|
fi
|
|
name: Lint pull request title
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
- edited
|