23 lines
492 B
YAML
23 lines
492 B
YAML
name: Check PR title
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
- edited
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: stackit-docker
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
sparse-checkout: |
|
|
.forgejo
|
|
- name: Check PR title
|
|
uses: https://stackit-solutions.git.onstackit.cloud/actions/check-conventional-commit@v1
|
|
with:
|
|
value: ${{ github.event.pull_request.title }}
|