cloudflare/kumo
Publicmirrored fromhttps://github.com/cloudflare/kumoAvailable
lefthook.yml
16lines · modecode
| 1 | # Lefthook git hooks configuration |
| 2 | # https://github.com/evilmartians/lefthook |
| 3 | # |
| 4 | # Skip hooks: LEFTHOOK=0 git push |
| 5 | # Skip specific hook: LEFTHOOK_EXCLUDE=validate-changeset git push |
| 6 | # Git native skip: git push --no-verify |
| 7 | |
| 8 | pre-push: |
| 9 | skip: |
| 10 | - ref: main |
| 11 | commands: |
| 12 | validate-changeset: |
| 13 | run: pnpm tsx ci/scripts/validate-kumo-changeset.ts |
| 14 | skip: |
| 15 | - merge |
| 16 | - rebase |
| 17 | |