mirror of
https://github.com/Second-Hand-Friends/kleinanzeigen-bot.git
synced 2026-03-12 02:31:45 +01:00
ci: add PR title validation
This commit is contained in:
15
.github/labeler.yml
vendored
Normal file
15
.github/labeler.yml
vendored
Normal 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
|
||||||
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
@@ -24,6 +24,7 @@ on:
|
|||||||
- '.github/workflows/codeql-analysis.yml'
|
- '.github/workflows/codeql-analysis.yml'
|
||||||
- '.github/workflows/stale.yml'
|
- '.github/workflows/stale.yml'
|
||||||
- '.github/workflows/update-python-deps.yml'
|
- '.github/workflows/update-python-deps.yml'
|
||||||
|
- '.github/workflows/validate-pr.yml'
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**/*.md'
|
- '**/*.md'
|
||||||
|
|||||||
1
.github/workflows/codeql-analysis.yml
vendored
1
.github/workflows/codeql-analysis.yml
vendored
@@ -17,6 +17,7 @@ on:
|
|||||||
- '.github/workflows/build.yml'
|
- '.github/workflows/build.yml'
|
||||||
- '.github/workflows/stale.yml'
|
- '.github/workflows/stale.yml'
|
||||||
- '.github/workflows/update-python-deps.yml'
|
- '.github/workflows/update-python-deps.yml'
|
||||||
|
- '.github/workflows/validate-pr.yml'
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**/*.md'
|
- '**/*.md'
|
||||||
|
|||||||
47
.github/workflows/validate-pr-title.yml
vendored
Normal file
47
.github/workflows/validate-pr-title.yml
vendored
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
# https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions
|
||||||
|
name: "Validate PR Title"
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- edited
|
||||||
|
- synchronize
|
||||||
|
- reopened
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pull-requests: write
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: "Validate semantic PR title"
|
||||||
|
uses: amannn/action-semantic-pull-request@v5 # https://github.com/amannn/action-semantic-pull-request
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
# https://mazer.dev/en/git/best-practices/git-semantic-commits/
|
||||||
|
# https://github.com/commitizen/conventional-commit-types/blob/master/index.json
|
||||||
|
types: |
|
||||||
|
build
|
||||||
|
ci
|
||||||
|
chore
|
||||||
|
docs
|
||||||
|
fix
|
||||||
|
enh
|
||||||
|
feat
|
||||||
|
refact
|
||||||
|
revert
|
||||||
|
perf
|
||||||
|
style
|
||||||
|
test
|
||||||
|
scopes: |
|
||||||
|
deps
|
||||||
|
i18n
|
||||||
|
requireScope: false
|
||||||
|
|
||||||
|
- name: "Label PR"
|
||||||
|
uses: srvaroa/labeler@v1.13.0 # https://github.com/srvaroa/labeler
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
Reference in New Issue
Block a user