cloudflare/kumo

Public

mirrored fromhttps://github.com/cloudflare/kumoAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
886b20f7067e7fc14460caf2887662e26f88fb99

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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
8pre-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