mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-27 15:37:44 +00:00
7d279721b4
* change ci yml * add PULL_REQUEST_TEMPLATE * change ci yml * change ci yml * Update .github/workflows/release.yml * Update .github/workflows/release.yml * Update .github/workflows/release.yml --------- Co-authored-by: you-n-g <you-n-g@users.noreply.github.com>
23 lines
711 B
YAML
23 lines
711 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|deps|doc|docs|feat|fix|perf|ref|refactor|revert|style|test|tests)(\(\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
|