refactor!: remove MinimumLoad() option #17

Merged
mvhutz merged 3 commits from feat/remove-minimum-load-option into main 2026-04-03 14:51:41 +00:00
Showing only changes of commit 5c93d93f50 - Show all commits

View File

@@ -9,9 +9,11 @@ jobs:
check-pr-title:
name: Check PR Title
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
env:
TITLE: ${{ gitea.event.pull_request.title }}
steps:
- run: |
TITLE="${{ gitea.event.pull_request.title }}"
if ! echo "$TITLE" | grep -qE '^(WIP: )?(feat|fix|docs|chore|ci|test|refactor|perf|build|style|revert)(\(.+\))?(!)?: .+'; then
echo "::error::Pull Request title must follow conventional commits"
exit 1