diff --git a/.github/workflows/ai-review.yml b/.github/workflows/ai-review.yml index 431cdbde..cdd917ba 100644 --- a/.github/workflows/ai-review.yml +++ b/.github/workflows/ai-review.yml @@ -261,7 +261,7 @@ jobs: --bare --model ${{ env.REVIEW_MODEL }} --permission-mode bypassPermissions - --max-turns 30 + --max-turns 40 --allowedTools "Glob,Grep,Read,Write,Bash(gh pr diff *),Bash(gh pr view *),Bash(git diff *),Bash(git log *),Bash(git show *),Bash(cat *),Bash(ls *),Bash(wc *),Bash(head *),Bash(tail *),Bash(find *)" # Fallback: if Claude didn't write the review file, extract from execution output diff --git a/commitlint.config.cjs b/commitlint.config.cjs index f135c032..cdb30d43 100644 --- a/commitlint.config.cjs +++ b/commitlint.config.cjs @@ -15,7 +15,8 @@ module.exports = { 'chore', // Maintenance → no release 'ci', // CI/CD changes → no release 'build', // Build system → no release - 'revert' // Revert commit → PATCH + 'revert', // Revert commit → PATCH + 'hotfix' // Production hotfix → PATCH ]], // Subject case - disabled to allow capital letters 'subject-case': [0],