ci: add PR title validation

This commit is contained in:
sebthom
2025-02-12 22:16:16 +01:00
parent 8270554507
commit c61c14709f
4 changed files with 64 additions and 0 deletions

15
.github/labeler.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
# see https://github.com/srvaroa/labeler
version: 1
issues: False
labels:
- label: "bug"
title: "^fix(\\(.*\\))?:.*"
- label: "dependencies"
title: "^deps(\\(.*\\))?:.*"
- label: "documentation"
title: "^docs(\\(.*\\))?:.*"
- label: "enhancement"
title: "^(enh|feat)(\\(.*\\))?:.*"
- label: "work-in-progress"
title: "^WIP:.*"
mergeable: false