mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
16 lines
414 B
YAML
16 lines
414 B
YAML
|
name: PR Conventional Commit Validation
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
types: [opened, synchronize, reopened, edited]
|
||
|
|
||
|
jobs:
|
||
|
validate-pr-title:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: PR Conventional Commit Validation
|
||
|
uses: ytanikin/PRConventionalCommits@1.1.0
|
||
|
with:
|
||
|
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'
|
||
|
add_label: 'false'
|