mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-03 14:03:10 +00:00
20 lines
455 B
YAML
20 lines
455 B
YAML
name: Conventional Commits Linting
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
workflow_dispatch:
|
|
merge_group:
|
|
|
|
jobs:
|
|
pr-title:
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name == 'pull_request'
|
|
steps:
|
|
- name: PR Conventional Commit Validation
|
|
uses: ytanikin/pr-conventional-commits@1.4.1
|
|
with:
|
|
task_types: '["feat","fix","docs","test","ci","build","refactor","style","perf","chore","revert"]'
|